aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/Synchronized.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/lombok/Synchronized.java')
-rw-r--r--src/core/lombok/Synchronized.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/lombok/Synchronized.java b/src/core/lombok/Synchronized.java
index d308a199..c5601a0c 100644
--- a/src/core/lombok/Synchronized.java
+++ b/src/core/lombok/Synchronized.java
@@ -26,9 +26,6 @@ import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import lombok.core.FlagUsageType;
-import lombok.core.configuration.ConfigurationKey;
-
/**
* Almost exactly like putting the 'synchronized' keyword on a method, except will synchronize on a private internal
* Object, so that other code not under your control doesn't meddle with your thread management by locking on
@@ -44,13 +41,6 @@ import lombok.core.configuration.ConfigurationKey;
@Retention(RetentionPolicy.SOURCE)
public @interface Synchronized {
/**
- * lombok configuration: {@code lombok.Synchronized.flagUsage} = {@code WARNING} | {@code ERROR}.
- *
- * If set, <em>any</em> usage of {@code @Synchronized} results in a warning / error.
- */
- ConfigurationKey<FlagUsageType> FLAG_USAGE = new ConfigurationKey<FlagUsageType>("lombok.Synchronized.flagUsage") {};
-
- /**
* Optional: specify the name of a different field to lock on. It is a compile time error if this field
* doesn't already exist (the fields are automatically generated only if you don't specify a specific name.
*/