Skip to content

Commit

Permalink
Remove unnecessary @AutoCodec annotation from AspectDescriptor.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 346679236
  • Loading branch information
janakdr authored and copybara-github committed Dec 10, 2020
1 parent 84e3bb2 commit 72ce2f6
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import com.google.common.collect.ImmutableMultimap;
import com.google.devtools.build.lib.concurrent.ThreadSafety.Immutable;
import com.google.devtools.build.lib.skyframe.serialization.autocodec.AutoCodec;
import com.google.protobuf.TextFormat;
import java.util.Map;
import java.util.Objects;
Expand All @@ -27,12 +26,10 @@
* <p>Used for dependency resolution.
*/
@Immutable
@AutoCodec
public final class AspectDescriptor {
private final AspectClass aspectClass;
private final AspectParameters aspectParameters;

@AutoCodec.Instantiator
public AspectDescriptor(AspectClass aspectClass, AspectParameters aspectParameters) {
this.aspectClass = aspectClass;
this.aspectParameters = aspectParameters;
Expand Down

0 comments on commit 72ce2f6

Please sign in to comment.