Sho SHIMIZU

Refactor: Rename

Change-Id: Iae498b3a40e4c920598b05c4a7e5f36d6cb33e85
...@@ -633,13 +633,13 @@ public class OpticalCircuitIntentCompiler implements IntentCompiler<OpticalCircu ...@@ -633,13 +633,13 @@ public class OpticalCircuitIntentCompiler implements IntentCompiler<OpticalCircu
633 /** 633 /**
634 * Finds the common TributarySlots available on the two connect points. 634 * Finds the common TributarySlots available on the two connect points.
635 * 635 *
636 - * @param srcCp source connect point 636 + * @param src source connect point
637 - * @param dstCp dest connect point 637 + * @param dst dest connect point
638 * @return set of common TributarySlots on both connect points 638 * @return set of common TributarySlots on both connect points
639 */ 639 */
640 - Set<TributarySlot> findCommonTributarySlotsOnCps(ConnectPoint srcCp, ConnectPoint dstCp) { 640 + Set<TributarySlot> findCommonTributarySlotsOnCps(ConnectPoint src, ConnectPoint dst) {
641 - Set<TributarySlot> forward = findTributarySlotsOnCp(srcCp); 641 + Set<TributarySlot> forward = findTributarySlotsOnCp(src);
642 - Set<TributarySlot> backward = findTributarySlotsOnCp(dstCp); 642 + Set<TributarySlot> backward = findTributarySlotsOnCp(dst);
643 return Sets.intersection(forward, backward); 643 return Sets.intersection(forward, backward);
644 } 644 }
645 645
......