(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / core / DefaultProvidedInterface.java
index 165d6ff3c81c1bec8b8bdedb8d807871d0f1b155..1297d363b7337e23599424a5a0ba2b28983a62bc 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.system.core;
 
 import java.util.ArrayList;
@@ -109,12 +109,12 @@ public class DefaultProvidedInterface implements ProvidedInterface {
 
         Collections.sort(result);
 
-        String value = "";
+        StringBuffer value = new StringBuffer();
 
         for (String str : result) {
-            value += (":" + str);
+            value.append(":" + str);
         }
 
-        return value;
+        return value.toString();
     }
 }