Skip to content

Commit c9ce183

Browse files
committed
JENKINS-38418 wrong package name fixed
1 parent dcb1eb5 commit c9ce183

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/jenkinsci/plugins/workflow/remoteloader/GroovyFileGlobalVariable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public abstract class GroovyFileGlobalVariable extends GlobalVariable {
4545
*/
4646
@Nonnull
4747
public String getClassName() {
48-
return getClass().getName() + ".Impl";
48+
return getClass().getName() + ".FileLoaderDSLImpl";
4949
}
5050

5151
@Override

src/main/resources/org/jenkinsci/plugins/workflow/remoteloader/FileLoaderDSL/Impl.groovy renamed to src/main/resources/org/jenkinsci/plugins/workflow/remoteloader/FileLoaderDSL/FileLoaderDSLImpl.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
* THE SOFTWARE.
2323
*/
24-
package org.jenkinsci.plugins.workflow.remoteloader
24+
package org.jenkinsci.plugins.workflow.remoteloader.FileLoaderDSL
2525

2626
import org.jenkinsci.plugins.workflow.cps.CpsScript;
2727

0 commit comments

Comments
 (0)