diff options
author | Keith Packard <keithp@keithp.com> | 2012-01-02 15:45:14 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-06-02 19:09:09 -0700 |
commit | 97663f922e236f4ee7bd08277ca80d419b5cd10f (patch) | |
tree | 338e6fd4125c6312dccb7d203877551db6d63090 /altosui/AltosFile.java | |
parent | c9e52287751867d9e451146ccde78109609d30d7 (diff) |
altosui: Split out UI-specific preferences
Prepare to create library shared with android application.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosFile.java')
-rw-r--r-- | altosui/AltosFile.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosFile.java b/altosui/AltosFile.java index 2e33b271..e2b6d5a6 100644 --- a/altosui/AltosFile.java +++ b/altosui/AltosFile.java @@ -24,7 +24,7 @@ import java.util.*; class AltosFile extends File { public AltosFile(int year, int month, int day, int serial, int flight, String extension) { - super (AltosPreferences.logdir(), + super (AltosUIPreferences.logdir(), String.format("%04d-%02d-%02d-serial-%03d-flight-%03d.%s", year, month, day, serial, flight, extension)); } |