mirror of
https://github.com/corda/corda.git
synced 2025-06-13 12:48:18 +00:00
sketch of Runtime.exec() and Calendar; misc bugfixes
This commit is contained in:
@ -1,5 +1,13 @@
|
||||
package java.text;
|
||||
|
||||
public class DateFormatSymbols {
|
||||
private String[] ampm = new String[] { "AM", "PM" };
|
||||
|
||||
public String[] getAmPmStrings() {
|
||||
return ampm;
|
||||
}
|
||||
|
||||
public void setAmPmStrings(String[] v) {
|
||||
ampm = v;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user