Skip to content

Commit 66a973a

Browse files
committed
Renamed varible (typo)
1 parent 9f8d192 commit 66a973a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

arduino-core/src/cc/arduino/utils/network/FileDownloaderCache.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -265,16 +265,16 @@ public boolean isNotChange() {
265265
@JsonIgnore
266266
public boolean isChange() {
267267
// Check if the file is expire
268-
boolean isChange = false;
268+
boolean isChanged = false;
269269
if (isExpire()) {
270-
isChange = true;
270+
isChanged = true;
271271
}
272272

273273
if (lastETag != null && !lastETag.equals(eTag)) {
274274
// Different ETag means that the file is changed
275-
isChange = true;
275+
isChanged = true;
276276
}
277-
return isChange;
277+
return isChanged;
278278
}
279279

280280
@JsonIgnore

0 commit comments

Comments
 (0)