Refactor: Rename

Change-Id: Iae498b3a40e4c920598b05c4a7e5f36d6cb33e85
diff --git a/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalCircuitIntentCompiler.java b/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalCircuitIntentCompiler.java
index c6b32b6..d1b0ec2 100644
--- a/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalCircuitIntentCompiler.java
+++ b/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalCircuitIntentCompiler.java
@@ -633,13 +633,13 @@
     /**
      * Finds the common TributarySlots available on the two connect points.
      *
-     * @param srcCp source connect point
-     * @param dstCp dest connect point
+     * @param src source connect point
+     * @param dst dest connect point
      * @return set of common TributarySlots on both connect points
      */
-    Set<TributarySlot> findCommonTributarySlotsOnCps(ConnectPoint srcCp, ConnectPoint dstCp) {
-        Set<TributarySlot> forward = findTributarySlotsOnCp(srcCp);
-        Set<TributarySlot> backward = findTributarySlotsOnCp(dstCp);
+    Set<TributarySlot> findCommonTributarySlotsOnCps(ConnectPoint src, ConnectPoint dst) {
+        Set<TributarySlot> forward = findTributarySlotsOnCp(src);
+        Set<TributarySlot> backward = findTributarySlotsOnCp(dst);
         return Sets.intersection(forward, backward);
     }