source: josm/trunk/src/org/openstreetmap/josm/data/gpx/Extensions.java@ 13388

Last change on this file since 13388 was 9989, checked in by Don-vip, 8 years ago

sonar - Methods should not be empty

  • Property svn:eol-style set to native
File size: 405 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.gpx;
3
4import java.util.LinkedHashMap;
5
6/**
7 * Data class for extensions in a GPX-File.
8 */
9public class Extensions extends LinkedHashMap<String, String> {
10
11 private static final long serialVersionUID = 1L;
12
13 /**
14 * Constructs a new {@code Extensions}.
15 */
16 public Extensions() {
17 super();
18 }
19}
Note: See TracBrowser for help on using the repository browser.