mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
classpath progress
This commit is contained in:
@ -23,10 +23,19 @@ public class StringBuffer {
|
||||
return this;
|
||||
}
|
||||
|
||||
public synchronized StringBuffer deleteCharAt(int i) {
|
||||
sb.deleteCharAt(i);
|
||||
return this;
|
||||
}
|
||||
|
||||
public synchronized int length() {
|
||||
return sb.length();
|
||||
}
|
||||
|
||||
public synchronized void setLength(int v) {
|
||||
sb.setLength(v);
|
||||
}
|
||||
|
||||
public synchronized void getChars(int srcOffset, int srcLength, char[] dst,
|
||||
int dstOffset)
|
||||
{
|
||||
|
Reference in New Issue
Block a user