Now works with JDK < 1.4.

This commit is contained in:
dchandler 2005-08-22 22:42:40 +00:00
parent 852401c771
commit 58819cf43d

View file

@ -87,7 +87,7 @@ class GC {
+ UnicodeUtils.unicodeStringToPrettyString(nfthdl)); + UnicodeUtils.unicodeStringToPrettyString(nfthdl));
} }
this.nfthdl = nfthdl; this.nfthdl = nfthdl;
assert (nfthdl.length() > 0); ThdlDebug.verify(nfthdl.length() > 0); // TODO(dchandler): assert only
if (nfthdl.length() < 1) if (nfthdl.length() < 1)
valid = false; valid = false;
valid = validGcRegex.matcher(nfthdl).matches(); valid = validGcRegex.matcher(nfthdl).matches();