Skip to content

Commit 46dfd76

Browse files
committed
Removed warning about accessing a non-accessible member of an enclosing type
1 parent bd7e765 commit 46dfd76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arduino-core/src/cc/arduino/Compiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public class Compiler implements MessageConsumer {
101101
enum BuilderAction {
102102
COMPILE("-compile"), DUMP_PREFS("-dump-prefs");
103103

104-
private final String value;
104+
final String value;
105105

106106
BuilderAction(String value) {
107107
this.value = value;

arduino-core/src/processing/app/helpers/CommandlineParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class CommandlineParser {
1818
private enum ACTION {
1919
GUI, NOOP, VERIFY("--verify"), UPLOAD("--upload"), GET_PREF("--get-pref"), INSTALL_BOARD("--install-boards"), INSTALL_LIBRARY("--install-library");
2020

21-
private final String value;
21+
final String value;
2222

2323
ACTION() {
2424
this.value = null;

0 commit comments

Comments
 (0)