Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 2aa3ffc

Browse files
committed
Updated as per review comment
1 parent 5214bf7 commit 2aa3ffc

File tree

4 files changed

+4
-29
lines changed

4 files changed

+4
-29
lines changed

src/main/java/com/mathworks/ci/SelectByFolder.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,5 @@ public void addSourceToInputArgs(List<String> inputArgsList, String cellArraySou
2828
inputArgsList.add("'" + SELECT_BY_FOLDER + "'" + "," + cellArraySourceVal);
2929
}
3030

31-
@Extension
32-
public static class DescriptorImpl extends Descriptor<SelectByFolder> {
33-
@Override
34-
public String getDisplayName() {
35-
return "";
36-
}
37-
}
31+
@Extension public static class DescriptorImpl extends Descriptor<SelectByFolder> {}
3832
}

src/main/java/com/mathworks/ci/SourceFolder.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,6 @@ public void addSourceToInputArgs(List<String> inputArgsList, String cellArraySo
3535
inputArgsList.add("'" + SOURCE_FOLDER + "'" + "," + cellArraySourceVal);
3636
}
3737

38-
@Extension public static class DescriptorImpl extends Descriptor<SourceFolder> {
39-
@Override
40-
public String getDisplayName() {
41-
return "";
42-
}
43-
}
38+
@Extension public static class DescriptorImpl extends Descriptor<SourceFolder> {}
4439

4540
}

src/main/java/com/mathworks/ci/SourceFolderPaths.java

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,5 @@ public String getSrcFolderPath() {
2626
return this.srcFolderPath;
2727
}
2828

29-
@Extension
30-
public static final class DescriptorImpl extends Descriptor<SourceFolderPaths> {
31-
32-
@Override
33-
public String getDisplayName() {
34-
return "";
35-
}
36-
}
29+
@Extension public static final class DescriptorImpl extends Descriptor<SourceFolderPaths> {}
3730
}

src/main/java/com/mathworks/ci/TestFolders.java

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,5 @@ public String getTestFolders() {
1919
return this.testFolders;
2020
}
2121

22-
@Extension
23-
public static final class DescriptorImpl extends Descriptor<TestFolders> {
24-
25-
@Override
26-
public String getDisplayName() {
27-
return "";
28-
}
29-
}
22+
@Extension public static final class DescriptorImpl extends Descriptor<TestFolders> {}
3023
}

0 commit comments

Comments
 (0)