source: josm/trunk/src/org/openstreetmap/josm/data/osm/DataSource.java@ 5339

Last change on this file since 5339 was 2986, checked in by jttt, 14 years ago

Fix some of FindBugs warnings

  • Property svn:eol-style set to native
File size: 435 bytes
RevLine 
[298]1// License: GPL. Copyright 2007 by Immanuel Scholz and others
[247]2package org.openstreetmap.josm.data.osm;
3
4import org.openstreetmap.josm.data.Bounds;
5
[2986]6public class DataSource {
[1169]7 public final Bounds bounds;
8 public final String origin;
9
10 public DataSource(Bounds bounds, String origin) {
11 this.bounds = bounds;
12 this.origin = origin;
[2986]13 if (bounds == null)
[2013]14 throw new NullPointerException();
[290]15 }
[247]16}
Note: See TracBrowser for help on using the repository browser.