Don't use StringBuffer.append(StringBuffer), which is new to Java 1.4.

Use StringBuffer.append(String) instead.
This commit is contained in:
hns 2003-01-31 16:26:45 +00:00
parent 40f012d16d
commit b20fb16930

View file

@ -429,7 +429,7 @@ public final class NodeManager {
}
}
b1.append (b2);
b1.append (b2.toString());
b1.append (" )");
Connection con = dbm.getConnection ();