Fix issues found by FindBugs: URF_UNREAD_FIELD

http://findbugs.sourceforge.net/bugDescriptions.html#URF_UNREAD_FIELD

Change-Id: I5299f1750134927598fa191972167b07b40b0d11
diff --git a/src/main/java/net/onrc/onos/core/intent/runtime/PathCalcRuntimeModule.java b/src/main/java/net/onrc/onos/core/intent/runtime/PathCalcRuntimeModule.java
index 3e3af13..4ba9b54 100755
--- a/src/main/java/net/onrc/onos/core/intent/runtime/PathCalcRuntimeModule.java
+++ b/src/main/java/net/onrc/onos/core/intent/runtime/PathCalcRuntimeModule.java
@@ -155,7 +155,7 @@
         opEventChannel = datagridService.createChannel(INTENT_OP_EVENT_CHANNEL_NAME, Long.class, IntentOperationList.class);
         datagridService.addListener(INTENT_STATE_EVENT_CHANNEL_NAME, this, Long.class, IntentStateList.class);
         networkGraphService.registerNetworkGraphListener(this);
-        persistIntent = new PersistIntent(controllerRegistry, networkGraphService);
+        persistIntent = new PersistIntent(controllerRegistry);
     }
 
     // ================================================================================