We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f8d192 commit 66a973aCopy full SHA for 66a973a
arduino-core/src/cc/arduino/utils/network/FileDownloaderCache.java
@@ -265,16 +265,16 @@ public boolean isNotChange() {
265
@JsonIgnore
266
public boolean isChange() {
267
// Check if the file is expire
268
- boolean isChange = false;
+ boolean isChanged = false;
269
if (isExpire()) {
270
- isChange = true;
+ isChanged = true;
271
}
272
273
if (lastETag != null && !lastETag.equals(eTag)) {
274
// Different ETag means that the file is changed
275
276
277
- return isChange;
+ return isChanged;
278
279
280
0 commit comments