Ignore:
Timestamp:
2017-03-13T20:29:33+01:00 (7 years ago)
Author:
michael2402
Message:

Clean icon drawing code style.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/util/RotationAngle.java

    r11726 r11731  
    2222     * The rotation along a way.
    2323     */
    24     static final class WayDirectionRotationAngle implements RotationAngle {
     24    final class WayDirectionRotationAngle implements RotationAngle {
    2525        @Override
    2626        public double getRotationAngle(OsmPrimitive p) {
     
    7171     * A static rotation
    7272     */
    73     static final class StaticRotationAngle implements RotationAngle {
     73    final class StaticRotationAngle implements RotationAngle {
    7474        private final double angle;
    7575
     
    121121     * @since 11726
    122122     */
    123     static RotationAngle NO_ROTATION = new StaticRotationAngle(0);
     123    RotationAngle NO_ROTATION = new StaticRotationAngle(0);
    124124
    125125    /**
Note: See TracChangeset for help on using the changeset viewer.