mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
GC stress fixes and other bugfixes; classpath progress
This commit is contained in:
@ -1,7 +1,15 @@
|
||||
package java.lang;
|
||||
|
||||
public class StringBuffer {
|
||||
private final StringBuilder sb = new StringBuilder();
|
||||
private final StringBuilder sb;
|
||||
|
||||
public StringBuffer(int capacity) {
|
||||
sb = new StringBuilder(capacity);
|
||||
}
|
||||
|
||||
public StringBuffer() {
|
||||
this(0);
|
||||
}
|
||||
|
||||
public synchronized StringBuffer append(String s) {
|
||||
sb.append(s);
|
||||
|
Reference in New Issue
Block a user