aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/actions/CommandLine.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/actions/CommandLine.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/actions/CommandLine.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/actions/CommandLine.java b/src/main/java/com/google/devtools/build/lib/actions/CommandLine.java
index 558644be51..114e7b0bb0 100644
--- a/src/main/java/com/google/devtools/build/lib/actions/CommandLine.java
+++ b/src/main/java/com/google/devtools/build/lib/actions/CommandLine.java
@@ -19,7 +19,6 @@ import com.google.common.collect.ImmutableList;
import com.google.common.collect.Iterables;
import com.google.devtools.build.lib.actions.Artifact.ArtifactExpander;
import com.google.devtools.build.lib.collect.CollectionUtils;
-import com.google.devtools.build.lib.skyframe.serialization.ObjectCodec;
import com.google.devtools.build.lib.skyframe.serialization.autocodec.AutoCodec;
import com.google.devtools.build.lib.skyframe.serialization.autocodec.AutoCodec.VisibleForSerialization;
import com.google.devtools.build.lib.util.Fingerprint;
@@ -29,9 +28,6 @@ public abstract class CommandLine {
@AutoCodec
@VisibleForSerialization
static class EmptyCommandLine extends CommandLine {
- public static final ObjectCodec<EmptyCommandLine> CODEC =
- new CommandLine_EmptyCommandLine_AutoCodec();
-
@Override
public Iterable<String> arguments() throws CommandLineExpansionException {
return ImmutableList.of();
@@ -66,9 +62,6 @@ public abstract class CommandLine {
@AutoCodec
@VisibleForSerialization
static class SimpleCommandLine extends CommandLine {
- public static final ObjectCodec<SimpleCommandLine> CODEC =
- new CommandLine_SimpleCommandLine_AutoCodec();
-
private Iterable<String> args;
SimpleCommandLine(Iterable<String> args) {
@@ -90,9 +83,6 @@ public abstract class CommandLine {
@AutoCodec
@VisibleForSerialization
static class PrefixedCommandLine extends CommandLine {
- public static final ObjectCodec<PrefixedCommandLine> CODEC =
- new CommandLine_PrefixedCommandLine_AutoCodec();
-
private ImmutableList<String> executableArgs;
private CommandLine commandLine;
@@ -129,9 +119,6 @@ public abstract class CommandLine {
@AutoCodec
@VisibleForSerialization
static class SuffixedCommandLine extends CommandLine {
- public static final ObjectCodec<SuffixedCommandLine> CODEC =
- new CommandLine_SuffixedCommandLine_AutoCodec();
-
private ImmutableList<String> executableArgs;
private CommandLine commandLine;