Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Analyst WebApp
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fidentis
Analyst WebApp
Commits
dfd5d8b5
There was an error fetching the commit references. Please try again later.
Commit
dfd5d8b5
authored
3 years ago
by
Radek Ošlejšek
Browse files
Options
Downloads
Patches
Plain Diff
Removed test output
parent
e273b36e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Comparison/src/main/java/cz/fidentis/analyst/face/HumanFaceFactory.java
+0
-4
0 additions, 4 deletions
.../main/java/cz/fidentis/analyst/face/HumanFaceFactory.java
with
0 additions
and
4 deletions
Comparison/src/main/java/cz/fidentis/analyst/face/HumanFaceFactory.java
+
0
−
4
View file @
dfd5d8b5
...
...
@@ -168,13 +168,11 @@ public class HumanFaceFactory {
*/
public
HumanFace
getFace
(
String
faceId
)
{
if
(
updateAccessTime
(
faceId
))
{
// in memory face
System
.
out
.
println
(
"AAA"
+
faceId
);
return
inMemoryFaces
.
get
(
usage
.
get
(
faceId
));
}
File
dumpFile
=
dumpedFaces
.
get
(
faceId
);
if
(
dumpFile
==
null
)
{
// unknown face
System
.
out
.
println
(
"BBB"
+
faceId
);
return
null
;
}
...
...
@@ -187,9 +185,7 @@ public class HumanFaceFactory {
executor
.
shutdown
();
while
(!
executor
.
isTerminated
()){}
face
=
result
.
get
();
System
.
out
.
println
(
"DDD"
+
face
.
getId
());
}
catch
(
InterruptedException
|
ExecutionException
ex
)
{
System
.
out
.
println
(
"EEE"
+
faceId
);
Logger
.
getLogger
(
HumanFaceFactory
.
class
.
getName
()).
log
(
Level
.
SEVERE
,
null
,
ex
);
return
null
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment