File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/main/java/io/jenkins/plugins/thememanager Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1616import jenkins .appearance .AppearanceCategory ;
1717import jenkins .model .GlobalConfigurationCategory ;
1818import net .sf .json .JSONObject ;
19- import org .apache .commons .lang .StringUtils ;
2019import org .jenkinsci .Symbol ;
2120import org .kohsuke .stapler .Ancestor ;
2221import org .kohsuke .stapler .DataBoundSetter ;
@@ -128,10 +127,10 @@ public String getHeaderHtml() {
128127 Set <String > data =
129128 new LinkedHashSet <>(themeManagerFactory .getTheme ().generateHeaderElements (injectCss ));
130129 data .addAll (namespacedThemes );
131- return StringUtils .join (data , "\n " );
130+ return String .join ("\n " , data );
132131 }
133132
134- return StringUtils .join (namespacedThemes , "\n " );
133+ return String .join ("\n " , namespacedThemes );
135134 }
136135
137136 @ SuppressWarnings ("unused" ) // called by jelly
You can’t perform that action at this time.
0 commit comments