CountryCodeTagger.java: Remove unused variable

Some of the other curation tasks use an array of results.
This commit is contained in:
Alan Orth 2020-08-02 22:02:57 +03:00
parent e158e4bc98
commit ca7deaac8f
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 0 additions and 2 deletions

View File

@ -44,8 +44,6 @@ public class CountryCodeTagger extends AbstractCurationTask
private final String iso3166Alpha2Field = taskProperty("iso3166-alpha2.field");
private final boolean forceupdate = taskBooleanProperty("forceupdate", false);
private List<String> results = new ArrayList<String>();
private Logger log = Logger.getLogger(CountryCodeTagger.class);
}