Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/core/Anywhere/src/org/litesoft/core/simpletypes/temporal/DateRes.java

Diff revisions: vs.
  @@ -6,8 +6,7 @@
6 6 /**
7 7 * A Date resolution from the Year thru the Day.
8 8 */
9 - public final class DateRes
10 - extends AbstractRes
9 + public final class DateRes extends AbstractRes
11 10 {
12 11 // Formatting Indicators
13 12 public static final char INDICATOR_YEAR = 'y';
  @@ -31,7 +30,7 @@
31 30
32 31 private DateRes( String pName, String pFriendlyName, int pIndex, char pIndicator )
33 32 {
34 - super( pName, pFriendlyName, pIndex , pIndicator );
33 + super( pName, pFriendlyName, pIndex, pIndicator );
35 34 }
36 35
37 36 private static AbstractRes[] OPTIONS = new AbstractRes[]{ToYEAR, ToMONTH, ToDAY,};
  @@ -56,5 +55,4 @@
56 55 {
57 56 return DAYindex <= getIndex();
58 57 }
59 -
60 58 }