Removed ns field

There does not seem to be a need to display that
This commit is contained in:
misaochan 2015-12-25 18:05:12 +13:00
parent 4a3a795751
commit 47b24f9603

View file

@ -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;
}
}
}