Code cleanup.
[javainspect.git] / src / main / java / eu / svjatoslav / inspector / java / RenderJavaInspect.java
index a616a63..6776e0a 100755 (executable)
@@ -12,8 +12,6 @@ package eu.svjatoslav.inspector.java;
 import eu.svjatoslav.inspector.java.structure.ClassGraph;
 import eu.svjatoslav.inspector.java.structure.Utils;
 
-import java.io.FileNotFoundException;
-
 public class RenderJavaInspect {
 
     private static void fullProjectExample() {
@@ -35,8 +33,8 @@ public class RenderJavaInspect {
     private static void handpickClassesExample() {
         /*
          * This example demonstrates generating of class graph from hand picked
-                * classes and visualizing GraphViz itself.
-                */
+         * classes and visualizing GraphViz itself.
+         */
 
         // Create graph
         final ClassGraph graph = new ClassGraph();
@@ -56,7 +54,7 @@ public class RenderJavaInspect {
         graph.generateGraph("JavaInspect");
     }
 
-    public static void main(final String[] args) throws FileNotFoundException {
+    public static void main(final String[] args) {
 
         handpickClassesExample();