X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=javainspect.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Finspector%2Fjava%2Fmethods%2FClassReference.java;h=e006296aaf3239ce3a21339a724f992f97eee583;hp=bac017d58cf35390566f55ada275e23b88a9ab27;hb=f0253606ed92cc13aa4e49e28a44ee41cf3d3251;hpb=4aabbddd2f592ec80977a20cf2ad58cc3ede802b diff --git a/src/main/java/eu/svjatoslav/inspector/java/methods/ClassReference.java b/src/main/java/eu/svjatoslav/inspector/java/methods/ClassReference.java index bac017d..e006296 100755 --- a/src/main/java/eu/svjatoslav/inspector/java/methods/ClassReference.java +++ b/src/main/java/eu/svjatoslav/inspector/java/methods/ClassReference.java @@ -1,7 +1,7 @@ /* * JavaInspect - Utility to visualize java software * Copyright (C) 2013-2017, 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 * or later as published by the Free Software Foundation. @@ -17,10 +17,9 @@ import java.util.List; public class ClassReference { + final List typeParameters = new ArrayList<>(); public String name; - List typeParameters = new ArrayList(); - public ClassReference(final Tokenizer tokenizer) throws InvalidSyntaxException { name = tokenizer.getNextToken().token;