Revert "Checkstyle enforcer"
[controller.git] / opendaylight / forwarding / staticrouting / src / main / java / org / opendaylight / controller / forwarding / staticrouting / StaticRouteConfig.java
index ceacebffb05cb57a8dfcc8fdf8ea8addc032e168..262c0170db9edc27d4885bb7fc1ca8a14e825d12 100644 (file)
@@ -151,18 +151,18 @@ public class StaticRouteConfig implements Serializable {
     public Status isValid() {
         if ((name == null) || (name.trim().length() < 1)) {
             return new Status(StatusCode.BADREQUEST,
-                        "Invalid Static Route name");
+                       "Invalid Static Route name");
         }
         if (!isValidStaticRouteEntry()) {
             return new Status(StatusCode.BADREQUEST,
-                        "Invalid Static Route entry. Please use the " +
-                        "IPAddress/mask format. Default gateway " +
-                        "(0.0.0.0/0) is NOT supported.");
+                       "Invalid Static Route entry. Please use the " +
+                       "IPAddress/mask format. Default gateway " +
+                       "(0.0.0.0/0) is NOT supported.");
         }
         if (!isValidNextHop()) {
             return new Status(StatusCode.BADREQUEST,
-                        "Invalid NextHop IP Address configuration. " +
-                                        "Please use the X.X.X.X format.");
+                       "Invalid NextHop IP Address configuration. " +
+                                       "Please use the X.X.X.X format.");
         }
 
         return new Status(StatusCode.SUCCESS, null);