From d27be2fa393f4a82e212fe13accfdd73468fb095 Mon Sep 17 00:00:00 2001 From: buzzcode2007 <73412182+buzz_lightsnack_2007@users.noreply.github.com> Date: Wed, 28 Feb 2024 09:44:05 +0800 Subject: [PATCH] resolve warnings --- src/main/java/tech/iBeans/POSware/Lite/inventory.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/java/tech/iBeans/POSware/Lite/inventory.java b/src/main/java/tech/iBeans/POSware/Lite/inventory.java index 0b58933..acbc31f 100644 --- a/src/main/java/tech/iBeans/POSware/Lite/inventory.java +++ b/src/main/java/tech/iBeans/POSware/Lite/inventory.java @@ -6,7 +6,6 @@ package tech.iBeans.POSware.Lite; import java.util.*; import tech.iBeans.POSware.test.data_test; -import tech.iBeans.POSware.test.data_test.*; /** * @@ -120,7 +119,7 @@ public class inventory { return(items_names_display); }; - public static Dictionary find(String NAME) { + public static Dictionary find(String NAME) { /* Find an item by its name, and get its information. Parameters: @@ -128,7 +127,7 @@ public class inventory { Returns: (Dictionary) its information */ - Dictionary SKU_DETAILS = null; + Dictionary SKU_DETAILS = null; refresh(); Boolean isNAME = item_names.contains(NAME);