Ignore:
Timestamp:
2016-07-27T02:48:44+02:00 (8 years ago)
Author:
Don-vip
Message:

see #12472 - fix more warnings, increase maximum number of reported warnings from 100 to 1000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/gpx/GpxDrawHelper.java

    r10303 r10659  
    482482                    }
    483483                    Color customColoringTransparent = hdopAlpha < 0 ? trkPnt.customColoring :
    484                         new Color(trkPnt.customColoring.getRGB() & 0x00ffffff | hdopAlpha << 24, true);
     484                        new Color((trkPnt.customColoring.getRGB() & 0x00ffffff) | (hdopAlpha << 24), true);
    485485                    g.setColor(customColoringTransparent);
    486486                    // hdop circles
     
    494494                    if (trkPnt.customColoring != null) {
    495495                        Color customColoringTransparent = largePointAlpha < 0 ? trkPnt.customColoring :
    496                             new Color(trkPnt.customColoring.getRGB() & 0x00ffffff | largePointAlpha << 24, true);
     496                            new Color((trkPnt.customColoring.getRGB() & 0x00ffffff) | (largePointAlpha << 24), true);
    497497
    498498                        g.setColor(customColoringTransparent);
Note: See TracChangeset for help on using the changeset viewer.