mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-18 12:54:25 +01:00
Silence unused warning in I18N class
This commit is contained in:
parent
38701678b2
commit
869137469c
@ -48,7 +48,13 @@ import static processing.app.I18n.tr;
|
|||||||
public class Preferences extends javax.swing.JDialog {
|
public class Preferences extends javax.swing.JDialog {
|
||||||
|
|
||||||
private final Language[] languages;
|
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 Language[] missingLanguages;
|
||||||
|
|
||||||
private final WarningItem[] warningItems;
|
private final WarningItem[] warningItems;
|
||||||
private final Base base;
|
private final Base base;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user