diff -r 4feced261c68 -r de822cd3df3a project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/frontlib/NativeSizeT.java --- a/project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/frontlib/NativeSizeT.java Tue Jan 21 22:38:13 2014 +0100 +++ b/project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/frontlib/NativeSizeT.java Tue Jan 21 22:43:06 2014 +0100 @@ -22,37 +22,37 @@ /** * This class represents the native C type size_t. On Android, this type could be mapped with int, * but we use a separate type to make it easier to adapt for other platforms if anyone wants to use - * the mappings elsewhere. + * the mappings elsewhere. */ public final class NativeSizeT extends Number { - private static final long serialVersionUID = 1L; - private final long value; - - private NativeSizeT(long value) { - this.value = value; - } - - public static NativeSizeT valueOf(long l) { - return new NativeSizeT(l); - } - - @Override - public int intValue() { - return (int)value; - } - - @Override - public long longValue() { - return value; - } + private static final long serialVersionUID = 1L; + private final long value; + + private NativeSizeT(long value) { + this.value = value; + } + + public static NativeSizeT valueOf(long l) { + return new NativeSizeT(l); + } + + @Override + public int intValue() { + return (int)value; + } - @Override - public double doubleValue() { - return value; - } + @Override + public long longValue() { + return value; + } - @Override - public float floatValue() { - return value; - } + @Override + public double doubleValue() { + return value; + } + + @Override + public float floatValue() { + return value; + } }