Merge pull request #16590 from Snuffleupagus/rm-util-unused-const

Remove a couple of unused constants from `src/shared/util.js`
This commit is contained in:
Tim van der Meij 2023-06-24 19:36:11 +02:00 committed by GitHub
commit 1ea502aaf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -142,24 +142,6 @@ const AnnotationType = {
REDACT: 26,
};
const AnnotationStateModelType = {
MARKED: "Marked",
REVIEW: "Review",
};
const AnnotationMarkedState = {
MARKED: "Marked",
UNMARKED: "Unmarked",
};
const AnnotationReviewState = {
ACCEPTED: "Accepted",
REJECTED: "Rejected",
CANCELLED: "Cancelled",
COMPLETED: "Completed",
NONE: "None",
};
const AnnotationReplyType = {
GROUP: "Group",
REPLY: "R",
@ -1040,11 +1022,8 @@ export {
AnnotationEditorType,
AnnotationFieldFlag,
AnnotationFlag,
AnnotationMarkedState,
AnnotationMode,
AnnotationReplyType,
AnnotationReviewState,
AnnotationStateModelType,
AnnotationType,
assert,
BaseException,