Skip to content

Commit

Permalink
[BEAM-14008] Fix incorrect guava import (#16966)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukecwik committed Feb 28, 2022
1 parent af50774 commit 6433594
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -17,7 +17,6 @@
*/
package org.apache.beam.sdk.fn.channel;

import avro.shaded.com.google.common.collect.ImmutableList;
import java.net.SocketAddress;
import java.util.Collections;
import java.util.List;
Expand All @@ -31,6 +30,7 @@
import org.apache.beam.vendor.grpc.v1p43p2.io.netty.channel.epoll.EpollEventLoopGroup;
import org.apache.beam.vendor.grpc.v1p43p2.io.netty.channel.epoll.EpollSocketChannel;
import org.apache.beam.vendor.grpc.v1p43p2.io.netty.channel.unix.DomainSocketAddress;
import org.apache.beam.vendor.guava.v26_0_jre.com.google.common.collect.ImmutableList;

/** A Factory which creates {@link ManagedChannel} instances. */
public class ManagedChannelFactory {
Expand Down

0 comments on commit 6433594

Please sign in to comment.