gui: Remove unused variables (#5665)

This commit is contained in:
Jonas Thelemann 2019-04-23 19:36:12 +02:00 committed by Audrius Butkevicius
parent afeb606b5b
commit e7d11adf3c
2 changed files with 0 additions and 2 deletions

View File

@ -23,7 +23,6 @@ angular.module('syncthing.core')
svg.appendChild(rect);
};
var rect;
var row;
var col;
var middleCol;

View File

@ -8,7 +8,6 @@ angular.module('syncthing.core')
var uid = new Date();
var storage = window.localStorage;
storage.setItem(uid, uid);
var success = storage.getItem(uid) == uid;
storage.removeItem(uid);
return storage;
} catch (exception) {