X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=javainspect.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Finspector%2Fjava%2FRenderJavaInspect.java;h=16b0857cc55858d071f5dff48d65db02e9491eaf;hp=a616a63b0a44514146d6e43d71e553f550913b00;hb=7d1259aea992843c47f29c932434a88ea9364f7e;hpb=93d3fd571ed634437334b78bec8fd725f4c90701 diff --git a/src/main/java/eu/svjatoslav/inspector/java/RenderJavaInspect.java b/src/main/java/eu/svjatoslav/inspector/java/RenderJavaInspect.java index a616a63..16b0857 100755 --- a/src/main/java/eu/svjatoslav/inspector/java/RenderJavaInspect.java +++ b/src/main/java/eu/svjatoslav/inspector/java/RenderJavaInspect.java @@ -1,6 +1,6 @@ /* * JavaInspect - Utility to visualize java software - * Copyright (C) 2013-2017, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu + * Copyright (C) 2013-2020, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu * * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU Lesser General Public License @@ -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();