Moves UI convenience methods to UiUtils class
[mkjsf-moved-to-github.git] / src / main / java / com / indexdata / mkjsf / utils / Utils.java
index 3d57494..5b8a696 100644 (file)
@@ -3,8 +3,6 @@ package com.indexdata.mkjsf.utils;
 import javax.enterprise.context.ApplicationScoped;\r
 import javax.inject.Named;\r
 \r
-@Named("utils")\r
-@ApplicationScoped\r
 public class Utils {\r
   \r
   public static String nl = System.getProperty("line.separator");  \r
@@ -27,11 +25,4 @@ public class Utils {
     }\r
   }\r
   \r
-  public static String concat(String... strings) {\r
-    StringBuilder concatenated = new StringBuilder("");\r
-    for (String string : strings) {\r
-      concatenated.append(string);\r
-    }\r
-    return concatenated.toString();\r
-  }\r
 }\r