Restructure thread function.

Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
main
sigonasr2 2 years ago
parent 54dff58f17
commit e826d71efc
  1. 25
      ArcadeReader.java

@ -693,13 +693,13 @@ public class ArcadeReader {
.replaceAll(Pattern.quote("="),"");
}
public static void submitToDatabase(Path p) {
//First we read and interpret what this image is.
BufferedImage img;
try {
img = ImageIO.read(p.toFile());
final Reader newImg = interpret(img);
Thread t = new Thread(){
public void run() {
Thread t = new Thread(){
public void run() {
//First we read and interpret what this image is.
BufferedImage img;
try {
img = ImageIO.read(p.toFile());
final Reader newImg = interpret(img);
newImg.result_screenshot=p;
//Path getGamePath = gamePath(newImg);
newImg.interpretBoxes(p);
@ -763,11 +763,12 @@ public class ArcadeReader {
} catch (IOException e) {
e.printStackTrace();
}
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
};
t.start();
} catch (IOException e) {
e.printStackTrace();
}
}
};
t.start();
}
}

Loading…
Cancel
Save