Skip to content
Snippets Groups Projects
Commit dfd5d8b5 authored by Radek Ošlejšek's avatar Radek Ošlejšek
Browse files

Removed test output

parent e273b36e
No related branches found
No related tags found
No related merge requests found
...@@ -168,13 +168,11 @@ public class HumanFaceFactory { ...@@ -168,13 +168,11 @@ public class HumanFaceFactory {
*/ */
public HumanFace getFace(String faceId) { public HumanFace getFace(String faceId) {
if (updateAccessTime(faceId)) { // in memory face if (updateAccessTime(faceId)) { // in memory face
System.out.println("AAA" + faceId);
return inMemoryFaces.get(usage.get(faceId)); return inMemoryFaces.get(usage.get(faceId));
} }
File dumpFile = dumpedFaces.get(faceId); File dumpFile = dumpedFaces.get(faceId);
if (dumpFile == null) { // unknown face if (dumpFile == null) { // unknown face
System.out.println("BBB" + faceId);
return null; return null;
} }
...@@ -187,9 +185,7 @@ public class HumanFaceFactory { ...@@ -187,9 +185,7 @@ public class HumanFaceFactory {
executor.shutdown(); executor.shutdown();
while (!executor.isTerminated()){} while (!executor.isTerminated()){}
face = result.get(); face = result.get();
System.out.println("DDD" + face.getId());
} catch (InterruptedException|ExecutionException ex) { } catch (InterruptedException|ExecutionException ex) {
System.out.println("EEE" + faceId);
Logger.getLogger(HumanFaceFactory.class.getName()).log(Level.SEVERE, null, ex); Logger.getLogger(HumanFaceFactory.class.getName()).log(Level.SEVERE, null, ex);
return null; return null;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment