aboutsummaryrefslogtreecommitdiff
path: root/protobuf-nano
diff options
context:
space:
mode:
authorCarl Mastrangelo <notcarl@google.com>2017-01-26 13:43:06 -0800
committerGitHub <noreply@github.com>2017-01-26 13:43:06 -0800
commit89bc2cd3b23d583387d104bb1ca6ec86ad9816be (patch)
tree3b70052b9504097ba3c9e8b62c6bb17a374402e6 /protobuf-nano
parent0428556ce45ac27549baa4b99e6895c973dfb134 (diff)
downloadgrpc-grpc-java-89bc2cd3b23d583387d104bb1ca6ec86ad9816be.tar.gz
all: update to latest import ordering
Diffstat (limited to 'protobuf-nano')
-rw-r--r--protobuf-nano/src/main/java/io/grpc/protobuf/nano/NanoProtoInputStream.java3
-rw-r--r--protobuf-nano/src/main/java/io/grpc/protobuf/nano/NanoUtils.java2
-rw-r--r--protobuf-nano/src/test/java/io/grpc/protobuf/nano/NanoUtilsTest.java9
3 files changed, 3 insertions, 11 deletions
diff --git a/protobuf-nano/src/main/java/io/grpc/protobuf/nano/NanoProtoInputStream.java b/protobuf-nano/src/main/java/io/grpc/protobuf/nano/NanoProtoInputStream.java
index 118832414..a5375255d 100644
--- a/protobuf-nano/src/main/java/io/grpc/protobuf/nano/NanoProtoInputStream.java
+++ b/protobuf-nano/src/main/java/io/grpc/protobuf/nano/NanoProtoInputStream.java
@@ -33,13 +33,10 @@ package io.grpc.protobuf.nano;
import com.google.protobuf.nano.CodedOutputByteBufferNano;
import com.google.protobuf.nano.MessageNano;
-
import io.grpc.KnownLength;
-
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
-
import javax.annotation.Nullable;
/**
diff --git a/protobuf-nano/src/main/java/io/grpc/protobuf/nano/NanoUtils.java b/protobuf-nano/src/main/java/io/grpc/protobuf/nano/NanoUtils.java
index 43c4b1079..47f98b82e 100644
--- a/protobuf-nano/src/main/java/io/grpc/protobuf/nano/NanoUtils.java
+++ b/protobuf-nano/src/main/java/io/grpc/protobuf/nano/NanoUtils.java
@@ -34,10 +34,8 @@ package io.grpc.protobuf.nano;
import com.google.common.io.ByteStreams;
import com.google.protobuf.nano.CodedInputByteBufferNano;
import com.google.protobuf.nano.MessageNano;
-
import io.grpc.MethodDescriptor.Marshaller;
import io.grpc.Status;
-
import java.io.IOException;
import java.io.InputStream;
diff --git a/protobuf-nano/src/test/java/io/grpc/protobuf/nano/NanoUtilsTest.java b/protobuf-nano/src/test/java/io/grpc/protobuf/nano/NanoUtilsTest.java
index 2a1b3c4a3..f188781be 100644
--- a/protobuf-nano/src/test/java/io/grpc/protobuf/nano/NanoUtilsTest.java
+++ b/protobuf-nano/src/test/java/io/grpc/protobuf/nano/NanoUtilsTest.java
@@ -39,19 +39,16 @@ import static org.junit.Assert.fail;
import com.google.protobuf.nano.InvalidProtocolBufferNanoException;
import com.google.protobuf.nano.MessageNano;
-
import io.grpc.MethodDescriptor.Marshaller;
import io.grpc.Status;
import io.grpc.StatusRuntimeException;
import io.grpc.protobuf.nano.Messages.Message;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.junit.runners.JUnit4;
-
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
/** Unit tests for {@link NanoUtils}. */
@RunWith(JUnit4.class)