Skip to content

Commit

Permalink
Fix SpotBugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Reuven Lax committed Apr 24, 2019
1 parent df03a2e commit 3b6db54
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import static org.apache.beam.vendor.guava.v20_0.com.google.common.base.Preconditions.checkArgument;

import java.io.Serializable;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down Expand Up @@ -73,7 +74,7 @@
class DefaultSchemaProvider implements SchemaProvider {
final Map<TypeDescriptor, ProviderAndDescriptor> cachedProviders = Maps.newConcurrentMap();

private static final class ProviderAndDescriptor {
private static final class ProviderAndDescriptor implements Serializable {
final SchemaProvider schemaProvider;
final TypeDescriptor<?> typeDescriptor;

Expand Down

0 comments on commit 3b6db54

Please sign in to comment.