Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
adapt
ace
Commits
dc1222b3
Commit
dc1222b3
authored
Jun 19, 2017
by
Michael Ritter
Browse files
Use CollectionState enum instead of char
parent
6945d444
Changes
1
Hide whitespace changes
Inline
Side-by-side
ace-am/src/main/java/edu/umiacs/ace/monitor/audit/AuditThread.java
View file @
dc1222b3
...
...
@@ -719,7 +719,8 @@ public final class AuditThread extends Thread implements CancelCallback {
EntityManager
em
=
PersistUtil
.
getEntityManager
();
if
(
baseItemPathList
!=
null
)
{
if
(
coll
.
getState
()
==
'\0'
||
coll
.
getState
()
==
'N'
)
{
CollectionState
state
=
coll
.
getStateEnum
();
if
(
state
==
null
||
state
==
CollectionState
.
NEVER
)
{
return
;
}
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment