Silence unused warning in I18N class

This commit is contained in:
Cristian Maglie 2015-10-20 18:37:59 +02:00
parent 38701678b2
commit 869137469c
1 changed files with 6 additions and 0 deletions

View File

@ -48,7 +48,13 @@ import static processing.app.I18n.tr;
public class Preferences extends javax.swing.JDialog {
private final Language[] languages;
// Languages that are not translated at least to 65% are
// kept in the "missingLanguages" array until they have enough
// translated strings.
@SuppressWarnings("unused")
private final Language[] missingLanguages;
private final WarningItem[] warningItems;
private final Base base;