Code formatting and cleanup.
[javainspect.git] / src / main / java / eu / svjatoslav / inspector / java / structure / GraphElement.java
index 98212d2..1e88dba 100755 (executable)
@@ -11,12 +11,12 @@ package eu.svjatoslav.inspector.java.structure;
 
 public interface GraphElement {
 
-       public String getDot();
+    String getDot();
 
-       public String getEmbeddedDot();
+    String getEmbeddedDot();
 
-       public String getGraphId();
+    String getGraphId();
 
-       public boolean isVisible();
+    boolean isVisible();
 
 }