OPNFLWPLUG-930 Inconsistent flow IDs between flows
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / util / ErrorUtil.java
index 11ed18943f53d28b259a81602b7c1987d95098a6..fc570f6ab670deddd8d9bf0f84f7d77ed30ed715 100644 (file)
@@ -20,7 +20,7 @@ public final class ErrorUtil {
         throw new IllegalStateException("This class should not be instantiated.");
     }
 
-    public static final String errorsToString(final Collection<RpcError> rpcErrors) {
+    public static String errorsToString(final Collection<RpcError> rpcErrors) {
         final StringBuilder errors = new StringBuilder();
         if ((null != rpcErrors) && (rpcErrors.size() > 0)) {
             for (final RpcError rpcError : rpcErrors) {