From 8f0193f55f3d5d05c124be1eaedefe8d655c2345 Mon Sep 17 00:00:00 2001 From: buzzcode2007 <73412182+buzz_lightsnack_2007@users.noreply.github.com> Date: Wed, 28 Feb 2024 08:36:27 +0800 Subject: [PATCH] attempt to solve warnings on OnTransact --- .../java/tech/iBeans/POSware/Lite/OnTransact.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/tech/iBeans/POSware/Lite/OnTransact.java b/src/main/java/tech/iBeans/POSware/Lite/OnTransact.java index 00f0e7b..3d60379 100644 --- a/src/main/java/tech/iBeans/POSware/Lite/OnTransact.java +++ b/src/main/java/tech/iBeans/POSware/Lite/OnTransact.java @@ -7,10 +7,6 @@ import java.util.*; import javax.swing.*; import javax.swing.event.*; import java.awt.event.*; -import tech.iBeans.POSware.Lite.transact; -import tech.iBeans.POSware.Lite.WindowManagement; -import tech.iBeans.POSware.Lite.receipt; -import tech.iBeans.POSware.Lite.OnPayment; /** * @@ -469,6 +465,7 @@ public class OnTransact extends javax.swing.JFrame { private static void cart_calculation_refresh() { /* Refresh the cart's details, such as the total cost. */ + @SuppressWarnings("unchecked") Dictionary prices = transact.calculate(); jTextField_price_subtotal_value.setText(String.valueOf(prices.get("subtotal"))); @@ -497,7 +494,8 @@ public class OnTransact extends javax.swing.JFrame { Dictionary ITEM_SELECTED_DETAILS_PROCESSED = new Hashtable<>(); // Get the selected details. - Dictionary ITEM_SELECTED_DETAILS = inventory.find(ITEM_SELECTED); + @SuppressWarnings("unchecked") + Dictionary ITEM_SELECTED_DETAILS = inventory.find(ITEM_SELECTED); if (ITEM_SELECTED_DETAILS == null) {return (false);}; ITEM_SELECTED_DETAILS_PROCESSED.put("SKU", inventory.list().get(ITEM_SELECTED).toString()); @@ -538,6 +536,7 @@ public class OnTransact extends javax.swing.JFrame { cart_add(); } + @SuppressWarnings("unchecked") private boolean cart_add() { /* Add the item to the cart. @@ -550,7 +549,7 @@ public class OnTransact extends javax.swing.JFrame { if (ITEM_SELECTED >= 0) { // Get the selected details. - Dictionary ITEM_SELECTED_DETAILS = inventory.find(ITEM_SELECTED); + Dictionary ITEM_SELECTED_DETAILS = inventory.find(ITEM_SELECTED); if (ITEM_SELECTED_DETAILS == null) {return (false);}; String ITEM_SELECTED_SKU = inventory.list().get(ITEM_SELECTED).toString(); @@ -572,6 +571,7 @@ public class OnTransact extends javax.swing.JFrame { refresh_data(); }; + @SuppressWarnings("unchecked") private boolean cart_remove() { /* Remove the item to the cart. @@ -584,7 +584,7 @@ public class OnTransact extends javax.swing.JFrame { if (ITEM_SELECTED >= 0) { // Get the selected details. - Dictionary ITEM_SELECTED_DETAILS = inventory.find(ITEM_SELECTED); + Dictionary ITEM_SELECTED_DETAILS = inventory.find(ITEM_SELECTED); if (ITEM_SELECTED_DETAILS == null) {return (false);}; String ITEM_SELECTED_SKU = inventory.list().get(ITEM_SELECTED).toString();