mirror of
https://github.com/corda/corda.git
synced 2025-06-14 05:08:18 +00:00
implement a few methods to make SWT 3.4 happy
This commit is contained in:
@ -93,6 +93,11 @@ public class StringBuffer implements CharSequence {
|
||||
return this;
|
||||
}
|
||||
|
||||
public synchronized StringBuffer insert(int i, int v) {
|
||||
sb.insert(i, v);
|
||||
return this;
|
||||
}
|
||||
|
||||
public synchronized StringBuffer delete(int start, int end) {
|
||||
sb.delete(start, end);
|
||||
return this;
|
||||
|
Reference in New Issue
Block a user