Ignore:
Timestamp:
2017-03-19T15:55:27+01:00 (7 years ago)
Author:
Don-vip
Message:

checkstyle - NoWhiteSpaceBefore ...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/gpx/GpxData.java

    r11288 r11747  
    344344     * over all routes
    345345     */
    346     public Iterable<Collection<WayPoint>> getLinesIterable(final boolean ... trackVisibility) {
     346    public Iterable<Collection<WayPoint>> getLinesIterable(final boolean... trackVisibility) {
    347347        return () -> new LinesIterator(this, trackVisibility);
    348348    }
     
    397397         * included in the iteration. Can be null, then all tracks are included.
    398398         */
    399         public LinesIterator(GpxData data, boolean ... trackVisibility) {
     399        public LinesIterator(GpxData data, boolean... trackVisibility) {
    400400            itTracks = data.tracks.iterator();
    401401            idxTracks = -1;
Note: See TracChangeset for help on using the changeset viewer.