Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 20, 2024
1 parent 7dfae5e commit 934973e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ private void updateTabs(Boolean satisfied) {
newFragments.add(storageFragment);
newFragments.add(logFragment);
if (usbExists) {
newFragments.add(usbFrag);
newFragments.add(usbFrag);
}
} else {
logger.log(INFO, "ONLY PERMISSIONS TAB IS BEING SHOWN");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,11 @@ public boolean populateUsb() throws IOException {
usbTransportDir.mkdirs();
usbTransportToServerDir.mkdirs();
usbTransportToClientDir.mkdirs();
}
else {
if(!usbTransportToServerDir.exists()) {
} else {
if (!usbTransportToServerDir.exists()) {
usbTransportToServerDir.mkdirs();
}
if(!usbTransportToClientDir.exists()) {
if (!usbTransportToClientDir.exists()) {
usbTransportToClientDir.mkdirs();
}
}
Expand Down

0 comments on commit 934973e

Please sign in to comment.