Code style, Codacy fixes

This commit is contained in:
Tobias Schönberg 2017-05-13 16:21:08 +02:00
parent c6a2f2c7ea
commit 6b30e5e297
2 changed files with 2 additions and 2 deletions

View file

@ -163,7 +163,7 @@ public class Media implements Parcelable {
protected int width; protected int width;
protected int height; protected int height;
protected String license; protected String license;
protected String coordinates; private String coordinates;
protected String creator; protected String creator;
protected ArrayList<String> categories; // as loaded at runtime? protected ArrayList<String> categories; // as loaded at runtime?
protected Map<String, String> descriptions; // multilingual descriptions as loaded protected Map<String, String> descriptions; // multilingual descriptions as loaded

View file

@ -271,7 +271,7 @@ public class MediaDataExtractor {
* *
* @param parentNode The node of the coordinates template. * @param parentNode The node of the coordinates template.
* @return Pretty formatted coordinates. * @return Pretty formatted coordinates.
* @throws IOException * @throws IOException Parsing failed.
*/ */
private String getCoordinates(Node parentNode) throws IOException { private String getCoordinates(Node parentNode) throws IOException {
NodeList childNodes = parentNode.getChildNodes(); NodeList childNodes = parentNode.getChildNodes();