Skip to content

Commit

Permalink
Update and rename Ware House Managment/src/SearchFrame.java to Ware H…
Browse files Browse the repository at this point in the history
…ouse Managment/src/thuongtruong1009/SearchFrame.java
  • Loading branch information
thuongtruong1009 authored Sep 8, 2021
1 parent b58f492 commit 78fe0b2
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package wareHouseManagment;
package thuongtruong1009;

import java.awt.Color;
import java.awt.event.ActionEvent;
Expand Down Expand Up @@ -55,7 +55,7 @@ public void inputDialog() {
public void actionPerformed(ActionEvent e) {

try {
FileInputStream fis = new FileInputStream("D:/THUONG TRUONG INC/CODE PROGRAMMING/Java Code/Lab6-OOP-ITITIU19228/src/wareHouseManagment/lab6Text.txt");
FileInputStream fis = new FileInputStream("./src/newText.txt");
ObjectInputStream ois = new ObjectInputStream(fis);

items = (ArrayList<Item>) ois.readObject();
Expand Down Expand Up @@ -103,4 +103,3 @@ private String checkDescriptInfor(String productSearch) {
return "";
}
}

0 comments on commit 78fe0b2

Please sign in to comment.