Skip to content

Commit

Permalink
remove time meassurement of LibRenderSavedEpubs()
Browse files Browse the repository at this point in the history
  • Loading branch information
gamebeaker committed Sep 23, 2024
1 parent a9a3203 commit 317bbee
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions plugin/js/Library.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ class Library {
}

static LibRenderSavedEpubs(){
var startTime = performance.now()
chrome.storage.local.get(null, async function(items) {
let ShowAdvancedOptions = document.getElementById("LibShowAdvancedOptionsCheckbox").checked;
let CurrentLibKeys = await Library.LibGetAllLibStorageKeys("LibEpub", Object.keys(items));
Expand Down Expand Up @@ -376,8 +375,6 @@ class Library {
for (let i = 0; i < CurrentLibKeys.length; i++) {
document.getElementById("LibCover"+CurrentLibKeys[i]).src = await items["LibCover" + CurrentLibKeys[i]];
}
var endTime = performance.now()
console.log(`Call to doSomething took ${endTime - startTime} milliseconds`)
});
}

Expand Down

0 comments on commit 317bbee

Please sign in to comment.