Browse Source

Remove unnecessary enum modifiers

Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
tags/V1_9_7M1
Lars Grefer 3 years ago
parent
commit
c5be7f1734

+ 1
- 1
weaver/src/main/java/org/aspectj/weaver/tools/cache/CachedClassEntry.java View File

@@ -16,7 +16,7 @@ package org.aspectj.weaver.tools.cache;
* Represents a class which has been cached
*/
public class CachedClassEntry {
static enum EntryType {
enum EntryType {
GENERATED,
WEAVED,
IGNORED,

+ 1
- 1
weaver/src/main/java/org/aspectj/weaver/tools/cache/CachedClassReference.java View File

@@ -23,7 +23,7 @@ package org.aspectj.weaver.tools.cache;
* objects manually.
*/
public class CachedClassReference {
static enum EntryType {
enum EntryType {
GENERATED,
WEAVED,
IGNORED,

Loading…
Cancel
Save