diff options
Diffstat (limited to 'src/cgeo/geocaching/cgList.java')
| -rw-r--r-- | src/cgeo/geocaching/cgList.java | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/cgeo/geocaching/cgList.java b/src/cgeo/geocaching/cgList.java index 6c8ea54..162af76 100644 --- a/src/cgeo/geocaching/cgList.java +++ b/src/cgeo/geocaching/cgList.java @@ -3,19 +3,19 @@ package cgeo.geocaching; import cgeo.geocaching.geopoint.Geopoint; public class cgList { - public boolean def = false; - public int id = 0; - public String title = null; - public Long updated = null; - public Geopoint coords = null; - - public cgList(boolean defIn) { - def = defIn; - } - - public cgList(boolean defIn, int idIn, String titleIn) { - def = defIn; - id = idIn; - title = titleIn; - } + public boolean def = false; + public int id = 0; + public String title = null; + public Long updated = null; + public Geopoint coords = null; + + public cgList(boolean defIn) { + def = defIn; + } + + public cgList(boolean defIn, int idIn, String titleIn) { + def = defIn; + id = idIn; + title = titleIn; + } } |
