mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-26 20:54:22 +01:00
Removed warning about accessing a non-accessible member of an enclosing type
This commit is contained in:
parent
bd7e76533a
commit
46dfd7603c
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user