Fix eclipse/checkstyle warnings
[yangtools.git] / common / util / src / main / java / org / opendaylight / yangtools / util / PropertyUtils.java
index 1e4f0983ce7449fcd011af90f606d33883781c74..222d5f0c7f3359963a978b3197297449095c2e41 100644 (file)
@@ -33,10 +33,10 @@ public final class PropertyUtils {
      * @param defaultValue the default value
      * @return the System property as an int or the <code>defaultValue</code> if not found.
      */
-    public static int getIntSystemProperty( String propName, int defaultValue ) {
+    public static int getIntSystemProperty(String propName, int defaultValue) {
         int propValue = defaultValue;
         String strValue = System.getProperty(propName);
-        if (!Strings.isNullOrEmpty(strValue) && !strValue.trim().isEmpty() ) {
+        if (!Strings.isNullOrEmpty(strValue) && !strValue.trim().isEmpty()) {
             try {
                 propValue = Integer.parseInt(strValue);
             } catch (NumberFormatException e) {