We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
new Content(String)
1 parent c7ad740 commit f636667Copy full SHA for f636667
src/main/java/com/cloudbees/jenkins/support/api/Content.java
@@ -42,7 +42,7 @@ public abstract class Content {
42
/**
43
* Parts of the name to be filtered
44
*/
45
- private String[] filterableParameters;
+ private final String[] filterableParameters;
46
47
48
* Create a Content with this name. The name is not filtered so this constructor should be used exclusively when
@@ -51,7 +51,7 @@ public abstract class Content {
51
* @param name name of the content.
52
53
protected Content(String name) {
54
- this(name, null);
+ this(name, (String[]) null);
55
}
56
57
0 commit comments