resolve warnings
This commit is contained in:
parent
49e089f0e5
commit
d27be2fa39
1 changed files with 2 additions and 3 deletions
|
@ -6,7 +6,6 @@ package tech.iBeans.POSware.Lite;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
import tech.iBeans.POSware.test.data_test;
|
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);
|
return(items_names_display);
|
||||||
};
|
};
|
||||||
|
|
||||||
public static Dictionary find(String NAME) {
|
public static Dictionary<String, Object> find(String NAME) {
|
||||||
/* Find an item by its name, and get its information.
|
/* Find an item by its name, and get its information.
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
|
@ -128,7 +127,7 @@ public class inventory {
|
||||||
Returns: (Dictionary) its information
|
Returns: (Dictionary) its information
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Dictionary SKU_DETAILS = null;
|
Dictionary<String, Object> SKU_DETAILS = null;
|
||||||
|
|
||||||
refresh();
|
refresh();
|
||||||
Boolean isNAME = item_names.contains(NAME);
|
Boolean isNAME = item_names.contains(NAME);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue