Don't use StringBuffer.append(StringBuffer), which is new to Java 1.4.
Use StringBuffer.append(String) instead.
This commit is contained in:
parent
40f012d16d
commit
b20fb16930
1 changed files with 1 additions and 1 deletions
|
@ -429,7 +429,7 @@ public final class NodeManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
b1.append (b2);
|
b1.append (b2.toString());
|
||||||
b1.append (" )");
|
b1.append (" )");
|
||||||
|
|
||||||
Connection con = dbm.getConnection ();
|
Connection con = dbm.getConnection ();
|
||||||
|
|
Loading…
Add table
Reference in a new issue