From 90c7e6c92a98f51f101ea63e7a407d8182ff0873 Mon Sep 17 00:00:00 2001 From: Nathan M <82677882+hidude562@users.noreply.github.com> Date: Sun, 5 Feb 2023 07:24:52 -0500 Subject: [PATCH] Bug fix for updating apps --- jApps/src/components/jApps.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/jApps/src/components/jApps.java b/jApps/src/components/jApps.java index 98eb42e..ad26e06 100644 --- a/jApps/src/components/jApps.java +++ b/jApps/src/components/jApps.java @@ -7,16 +7,12 @@ import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; -import java.lang.reflect.Array; import java.nio.file.Files; import java.util.ArrayList; import java.util.Map; -import java.net.URL; -import java.io.InputStream; import java.nio.file.Path; import com.google.gson.Gson; -import com.google.gson.internal.LinkedTreeMap; // TODO: Add uninstall feature @@ -131,8 +127,8 @@ public jApps() { add(buttonPane, BorderLayout.PAGE_END); add(topButtonPane, BorderLayout.PAGE_START); - sortList(); checkForUSB(); + sortList(); updateDescription(); } @@ -313,4 +309,4 @@ public void run() { } }); } -} \ No newline at end of file +}