mirror of
https://github.com/corda/corda.git
synced 2025-06-12 20:28:18 +00:00
sketch of Runtime.exec() and Calendar; misc bugfixes
This commit is contained in:
@ -3,7 +3,7 @@ package java.text;
|
||||
import java.util.Locale;
|
||||
|
||||
public class MessageFormat extends Format {
|
||||
private final String pattern;
|
||||
private String pattern;
|
||||
private final Locale locale;
|
||||
|
||||
public MessageFormat(String pattern, Locale locale) {
|
||||
@ -19,4 +19,8 @@ public class MessageFormat extends Format {
|
||||
// todo
|
||||
return target.append(pattern);
|
||||
}
|
||||
|
||||
public void applyPattern(String pattern) {
|
||||
this.pattern = pattern;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user