Update of /cvsroot/thinlet/thinlet/src/java/thinlet
In directory sc8-pr-cvs1:/tmp/cvs-serv19064
Modified Files:
Thinlet.java
Log Message:
A bandaid for endless loop...
Index: Thinlet.java
===================================================================
RCS file: /cvsroot/thinlet/thinlet/src/java/thinlet/Thinlet.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Thinlet.java 26 Jun 2003 15:21:54 -0000 1.1
+++ Thinlet.java 3 Jul 2003 11:21:25 -0000 1.2
@@ -5114,6 +5114,7 @@
Object target = get(parent, key);
while (target != component) {
target = get(parent = target, key = ":next"); // (target != null)
+ if (target == null) return;
}
set(parent, key, get(target, ":next"));
set(target, ":next", null);
|