Skip to content

Commit

Permalink
reorder imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Nov 3, 2024
1 parent 71ea016 commit 481c7b5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

package org.apache.pekko.grpc.gen.scaladsl

import scala.collection.JavaConverters._
import scala.collection.immutable
import scala.collection.JavaConverters._
import com.google.protobuf.Descriptors._
import protocgen.CodeGenRequest
import scalapb.compiler.{ DescriptorImplicits, GeneratorParams }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,17 @@

package example.myapp.helloworld.grpc;

import com.google.rpc.Code;
import com.google.rpc.error_details.LocalizedMessage;
import java.util.ArrayList;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;

import com.google.rpc.Code;
import com.google.rpc.error_details.LocalizedMessage;
import org.apache.pekko.NotUsed;
import org.apache.pekko.grpc.GrpcServiceException;
import org.apache.pekko.stream.javadsl.Source;
import org.apache.pekko.util.ccompat.JavaConverters;

import scala.collection.JavaConverters;

public class RichErrorNativeImpl implements GreeterService {

Expand Down

0 comments on commit 481c7b5

Please sign in to comment.