|
Message
From: cvs at opencores.org<cvs@o...>
Date: Tue Nov 14 13:21:07 CET 2006
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/06/11 14:13:21 Modified: jop/java/tools/src/com/jopdesign/build TransitiveHull.java Log: remove matches for the ignored classes (not used in JOPizer) Revision Changes Path 1.3 jop/java/tools/src/com/jopdesign/build/TransitiveHull.java http://www.opencores.org/cvsweb.shtml/jop/java/tools/src/com/jopdesign/build/TransitiveHull.java.diff?r1=1.2&r2=1.3 (In the diff below, changes in quantity of whitespace are not shown.) Index: TransitiveHull.java =================================================================== RCS file: /cvsroot/martin/jop/java/tools/src/com/jopdesign/build/TransitiveHull.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- TransitiveHull.java 14 Jun 2005 13:58:28 -0000 1.2 +++ TransitiveHull.java 14 Nov 2006 12:21:07 -0000 1.3 @@ -25,7 +25,7 @@ * <p> * It fails however in the presence of reflection code. * - * @version $Id: TransitiveHull.java,v 1.2 2005/06/14 13:58:28 martin Exp $ + * @version $Id: TransitiveHull.java,v 1.3 2006/11/14 12:21:07 martin Exp $ * @author <A HREF="mailto:markus.dahm@b...">M. Dahm</A> */ public class TransitiveHull extends org.apache.bcel.classfile.EmptyVisitor { @@ -97,11 +97,13 @@ private void add(String class_name) { class_name = class_name.replace('/', '.'); - for(int i = 0; i < _ignored.length; i++) { - if(class_name.matches(_ignored[i])) { - return; // Ihh - } - } + // not used for JOPizer and matches not part + // of JDK 1.3 +// for(int i = 0; i < _ignored.length; i++) { +// if(class_name.matches(_ignored[i])) { +// return; // Ihh +// } +// } // we ignore array classes if (class_name.startsWith("[")) { return;
|
 |