Ignore:
Timestamp:
2015-05-17T02:56:15+02:00 (9 years ago)
Author:
Don-vip
Message:

code style - Unnecessary Final Modifier

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/datum/NTV2Util.java

    r7294 r8374  
    3838     * @return the int
    3939     */
    40     public static final int getIntLE(byte[] b, int i) {
     40    public static int getIntLE(byte[] b, int i) {
    4141        return (b[i++] & 0x000000FF) | ((b[i++] << 8) & 0x0000FF00) | ((b[i++] << 16) & 0x00FF0000) | (b[i] << 24);
    4242    }
     
    4848     * @return the int
    4949     */
    50     public static final int getIntBE(byte[] b, int i) {
     50    public static int getIntBE(byte[] b, int i) {
    5151        return (b[i++] << 24) | ((b[i++] << 16) & 0x00FF0000) | ((b[i++] << 8) & 0x0000FF00) | (b[i] & 0x000000FF);
    5252    }
     
    5959     * @return the int
    6060     */
    61     public static final int getInt(byte[] b, boolean bigEndian) {
     61    public static int getInt(byte[] b, boolean bigEndian) {
    6262        if (bigEndian)
    6363            return getIntBE(b, 0);
     
    7373     * @return the float
    7474     */
    75     public static final float getFloat(byte[] b, boolean bigEndian) {
     75    public static float getFloat(byte[] b, boolean bigEndian) {
    7676        int i = 0;
    7777        if (bigEndian) {
     
    9090     * @return the double
    9191     */
    92     public static final double getDouble(byte[] b, boolean bigEndian) {
     92    public static double getDouble(byte[] b, boolean bigEndian) {
    9393        int i = 0;
    9494        int j = 0;
Note: See TracChangeset for help on using the changeset viewer.