--- /home/cpdev/src/classpath/gnu/regexp/REMatch.java	2006-01-22 05:32:34.000000000 +0000
+++ gnu/regexp/REMatch.java	2005-09-14 21:51:27.000000000 +0000
@@ -67,7 +67,6 @@
     int[] start; // start positions (relative to offset) for each (sub)exp.
     int[] end;   // end positions for the same
     REMatch next; // other possibility (to avoid having to use arrays)
-    boolean empty; // empty string matched
 
     public Object clone() {
 	try {
@@ -89,7 +88,6 @@
 	index = other.index;
 	// need to deep clone?
 	next = other.next;
-	empty = other.empty;
     }
 
     REMatch(int subs, int anchor, int eflags) {
@@ -126,7 +124,6 @@
 	    start[i] = end[i] = -1;
 	}
 	next = null; // cut off alternates
-	empty = false;
     }
     
     /**
