Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
New upstream version 2.7+dfsg
· ea1ae726
Bas Couwenberg
authored
Mar 26, 2018
ea1ae726
Merge tag 'upstream/2.7+dfsg'
· 55931765
Bas Couwenberg
authored
Mar 26, 2018
Upstream version 2.7+dfsg
55931765
New upstream release.
· 5d1cc67d
Bas Couwenberg
authored
Mar 26, 2018
5d1cc67d
Add lintian override for vcs-deprecated-in-debian-infrastructure.
· cbd507a1
Bas Couwenberg
authored
Mar 26, 2018
cbd507a1
Set distribution to unstable.
· 5f3954ff
Bas Couwenberg
authored
Mar 26, 2018
5f3954ff
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
5f3954ff
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) unstable; urgency=medium
* New upstream release.
...
...
debian/source/lintian-overrides
0 → 100644
View file @
5f3954ff
# Package not officially migrated to Salsa yet.
jmapviewer source: vcs-deprecated-in-debian-infrastructure * https://anonscm.debian.org/*
src/org/openstreetmap/gui/jmapviewer/Coordinate.java
View file @
5f3954ff
...
...
@@ -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
*
...
...
src/org/openstreetmap/gui/jmapviewer/tilesources/BingAerialTileSource.java
View file @
5f3954ff
...
...
@@ -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
"http
s
://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
"http
s
://opengeodata.org/microsoft-imagery-details"
;
}
protected
Callable
<
List
<
Attribution
>>
getAttributionLoaderCallable
()
{
...
...