mirror of
https://github.com/corda/corda.git
synced 2025-06-15 21:58:17 +00:00
classpath progress
This commit is contained in:
@ -4,7 +4,7 @@ public class StringWriter extends Writer {
|
||||
private final StringBuilder out = new StringBuilder();
|
||||
|
||||
public void write(char[] b, int offset, int length) throws IOException {
|
||||
out.append(new String(b, offset, length));
|
||||
out.append(b, offset, length);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
|
Reference in New Issue
Block a user