Skip to content

Commit 5a64e2c

Browse files
demvladhaslinghuis
andauthored
Code style improvement
Co-authored-by: Mark Haslinghuis <[email protected]>
1 parent e28955b commit 5a64e2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/graph_spectrum.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ export function FlightLogAnalyser(flightLog, canvas, analyserCanvas) {
295295
let importsLeft = maxImportCount - GraphSpectrumPlot.getImportedSpectrumCount();
296296

297297
for (const file of files) {
298-
if ((importsLeft--) == 0) {
298+
if (importsLeft-- == 0) {
299299
break;
300300
}
301301
const reader = new FileReader();

0 commit comments

Comments
 (0)