aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skyframe/serialization/autocodec/AutoCodec.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/skyframe/serialization/autocodec/AutoCodec.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/serialization/autocodec/AutoCodec.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/serialization/autocodec/AutoCodec.java b/src/main/java/com/google/devtools/build/lib/skyframe/serialization/autocodec/AutoCodec.java
index 0f597dbee1..cb88b0ae8e 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/serialization/autocodec/AutoCodec.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/serialization/autocodec/AutoCodec.java
@@ -62,16 +62,6 @@ public @interface AutoCodec {
*/
PUBLIC_FIELDS,
/**
- * For use with abstract classes (enforced at compile time).
- *
- * <p>Uses reflection to determine the concrete subclass, stores the name of the subclass and
- * uses its codec to serialize the data.
- *
- * <p>This is no longer needed and only adds useless overhead.
- */
- // TODO(shahan): delete this and all references to it
- POLYMORPHIC,
- /**
* For use with classes that are singleton.
*
* <p>The serialized class must have a codec accessible, static INSTANCE field.