You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2015/08/16 10:53:33 UTC

svn commit: r1696124 - /commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/verifier/structurals/InstConstraintVisitor.java

Author: sebb
Date: Sun Aug 16 08:53:32 2015
New Revision: 1696124

URL: http://svn.apache.org/r1696124
Log:
Eliminate dependency on actual package name

Modified:
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/verifier/structurals/InstConstraintVisitor.java

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/verifier/structurals/InstConstraintVisitor.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/verifier/structurals/InstConstraintVisitor.java?rev=1696124&r1=1696123&r2=1696124&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/verifier/structurals/InstConstraintVisitor.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/verifier/structurals/InstConstraintVisitor.java Sun Aug 16 08:53:32 2015
@@ -52,7 +52,7 @@ import org.apache.commons.bcel6.verifier
  */
 public class InstConstraintVisitor extends EmptyVisitor{
 
-    private static final ObjectType GENERIC_ARRAY = ObjectType.getInstance("org.apache.commons.bcel6.verifier.structurals.GenericArray");
+    private static final ObjectType GENERIC_ARRAY = ObjectType.getInstance(GenericArray.class.getName());
 
     /**
      * The constructor. Constructs a new instance of this class.