Refactor NBINotifications and serviceHandlerImpl
[transportpce.git] / nbinotifications / src / main / java / org / opendaylight / transportpce / nbinotifications / utils / NbiNotificationsUtils.java
index d1a4ceecad6d1614be13e8b1332039ed9bde85f3..0c00503b751c8f1f459bb455743488ec606017d4 100644 (file)
@@ -22,8 +22,7 @@ public final class NbiNotificationsUtils {
 
     public static Properties loadProperties(String propertyFileName) {
         Properties props = new Properties();
-        InputStream inputStream = NbiNotificationsUtils.class.getClassLoader()
-                .getResourceAsStream(propertyFileName);
+        InputStream inputStream = NbiNotificationsUtils.class.getClassLoader().getResourceAsStream(propertyFileName);
         try {
             if (inputStream != null) {
                 props.load(inputStream);