Removed warning about accessing a non-accessible member of an enclosing type

This commit is contained in:
Cristian Maglie 2016-09-29 20:01:10 +02:00
parent bd7e76533a
commit 46dfd7603c
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ public class Compiler implements MessageConsumer {
enum BuilderAction {
COMPILE("-compile"), DUMP_PREFS("-dump-prefs");
private final String value;
final String value;
BuilderAction(String value) {
this.value = value;

View File

@ -18,7 +18,7 @@ public class CommandlineParser {
private enum ACTION {
GUI, NOOP, VERIFY("--verify"), UPLOAD("--upload"), GET_PREF("--get-pref"), INSTALL_BOARD("--install-boards"), INSTALL_LIBRARY("--install-library");
private final String value;
final String value;
ACTION() {
this.value = null;