From 47b24f96035846828e1b913d4ced5b68e5e75308 Mon Sep 17 00:00:00 2001 From: misaochan Date: Fri, 25 Dec 2015 18:05:12 +1300 Subject: [PATCH] Removed ns field There does not seem to be a need to display that --- .../src/main/java/fr/free/nrw/commons/upload/MwVolleyApi.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/commons/src/main/java/fr/free/nrw/commons/upload/MwVolleyApi.java b/commons/src/main/java/fr/free/nrw/commons/upload/MwVolleyApi.java index 91fbe8e1a..bf8f241bd 100644 --- a/commons/src/main/java/fr/free/nrw/commons/upload/MwVolleyApi.java +++ b/commons/src/main/java/fr/free/nrw/commons/upload/MwVolleyApi.java @@ -200,12 +200,11 @@ public class MwVolleyApi { } private static class Category { - private int ns; private String title; @Override public String toString() { - return " ns=" + ns + " title=" + title; + return " title=" + title; } } }