Skip to content

Commit

Permalink
fix: Use the correct Immutable interface (#3488)
Browse files Browse the repository at this point in the history
  • Loading branch information
purplefox committed Oct 7, 2019
1 parent eca41ba commit a1096bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@

package io.confluent.ksql.physical;

import com.google.errorprone.annotations.Immutable;
import io.confluent.ksql.execution.plan.ExecutionStep;
import io.confluent.ksql.materialization.MaterializationInfo;
import io.confluent.ksql.metastore.model.KeyField;
import io.confluent.ksql.query.QueryId;
import java.util.Objects;
import java.util.Optional;
import jdk.nashorn.internal.ir.annotations.Immutable;

@Immutable
public final class PhysicalPlan<T> {
Expand Down

0 comments on commit a1096bf

Please sign in to comment.