Skip to content

Commit bf50518

Browse files
author
jan
committed
tackle null case for failing test on github
1 parent ba9e0da commit bf50518

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

io.sloeber.core/src/io/sloeber/core/internal/SloeberConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ private void configureIfDirty() {
196196
private boolean projectNeedsUpdate() {
197197
IPath corePath = myBoardDescription.getActualCoreCodePath();
198198
IFolder coreFolder = getArduinoCoreFolder();
199-
if (!coreFolder.getLocation().equals(corePath)) {
199+
if (! corePath.equals(coreFolder.getLocation())) {
200200
// System.out.println("projectNeedsUpdate core Folder mismatch");
201201
// System.out.println("corefolder "+coreFolder.getLocation());
202202
// System.out.println("corePath "+corePath);

0 commit comments

Comments
 (0)