Skip to content
Commits on Source (7)
jmapviewer (2.7+dfsg-1~bpo9+1) stretch-backports; urgency=medium
* Rebuild for stretch-backports.
-- Bas Couwenberg <sebastic@debian.org> Sat, 31 Mar 2018 09:10:52 +0200
jmapviewer (2.7+dfsg-1) unstable; urgency=medium
* New upstream release.
* Add lintian override for vcs-deprecated-in-debian-infrastructure.
-- Bas Couwenberg <sebastic@debian.org> Mon, 26 Mar 2018 07:39:33 +0200
jmapviewer (2.6+dfsg-1~bpo9+1) stretch-backports; urgency=medium
* Rebuild for stretch-backports.
......
# Package not officially migrated to Salsa yet.
jmapviewer source: vcs-deprecated-in-debian-infrastructure * https://anonscm.debian.org/*
......@@ -11,7 +11,7 @@ import org.openstreetmap.gui.jmapviewer.interfaces.ICoordinate;
/**
* This class encapsulates a Point2D.Double and provide access
* via <tt>lat</tt> and <tt>lon</tt>.
* via <code>lat</code> and <code>lon</code>.
*
* @author Jan Peter Stotz
*
......
......@@ -161,9 +161,7 @@ public class BingAerialTileSource extends TMSTileSource {
} catch (SAXException e) {
System.err.println("Could not parse Bing aerials attribution metadata.");
e.printStackTrace();
} catch (ParserConfigurationException e) {
e.printStackTrace();
} catch (XPathExpressionException e) {
} catch (ParserConfigurationException | XPathExpressionException | NumberFormatException e) {
e.printStackTrace();
}
return null;
......@@ -216,7 +214,7 @@ public class BingAerialTileSource extends TMSTileSource {
@Override
public String getAttributionImageURL() {
return "http://opengeodata.org/microsoft-imagery-details";
return "https://opengeodata.org/microsoft-imagery-details";
}
@Override
......@@ -226,7 +224,7 @@ public class BingAerialTileSource extends TMSTileSource {
@Override
public String getTermsOfUseURL() {
return "http://opengeodata.org/microsoft-imagery-details";
return "https://opengeodata.org/microsoft-imagery-details";
}
protected Callable<List<Attribution>> getAttributionLoaderCallable() {
......