Skip to content

Commit

Permalink
fix null if else errors on npanel, code looks weird will take a bette…
Browse files Browse the repository at this point in the history
…r look later
  • Loading branch information
snaebjornl committed Jan 4, 2019
1 parent 4f10824 commit 162d3a2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private void stopSound() {
nPanel.stopSound();
} else {
//show("RÚV", "", false);
nPanel.stopSound();
//nPanel.stopSound();
hide();
}
}
Expand All @@ -130,7 +130,7 @@ private void getWifiLock() {
nPanel.getWifiLock();
} else {
//show("RÚV", "", false);
nPanel.getWifiLock();
//nPanel.getWifiLock();
hide();
}

Expand All @@ -142,7 +142,7 @@ private void releaseLocks() {
nPanel.releaseLocks();
} else {
//show("RÚV", "", false);
nPanel.releaseLocks();
//nPanel.releaseLocks();
hide();
}
}
Expand Down

0 comments on commit 162d3a2

Please sign in to comment.