updated coding rules.
[utils] / system / general / src / main / java / org / wamblee / system / graph / component / CheckExternallyProvidedVisitor.java
index c921630b5f9b9f4f73dd83ec31b1dcee413fd582..b63a03b55db8ea863d375ea78eed0095a6f5f5f0 100644 (file)
@@ -32,14 +32,14 @@ import org.wamblee.system.graph.Visitor;
  */
 public class CheckExternallyProvidedVisitor implements Visitor {
     
-    private Graph _graph; 
+    private Graph graph; 
 
     /**
      * Constructs the visitor. 
      * @param aGraph Component graph. 
      */
     public CheckExternallyProvidedVisitor(Graph aGraph) { 
-        _graph = aGraph; 
+        graph = aGraph; 
     }
 
     @Override
@@ -51,7 +51,7 @@ public class CheckExternallyProvidedVisitor implements Visitor {
     public void visitNode(Node aNode) {
         if ( aNode instanceof ExternalProvidedInterfaceNode) { 
             ExternalProvidedInterfaceNode provided = (ExternalProvidedInterfaceNode) aNode; 
-            List<Edge> edges = _graph.findOutgoing(provided);
+            List<Edge> edges = graph.findOutgoing(provided);
             if ( edges.size() > 2 ) { 
                 createDuplicateException("External provided interfaces has multiple internal matches", aNode, edges);
             }