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

Last change on this file since 9073 was 8308, checked in by Don-vip, 9 years ago

fix potential NPEs and Sonar issues related to serialization

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