Skip to content

Commit

Permalink
Upgrading sbt to 1.3.3 (cloudstateio#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorklang authored Oct 17, 2019
1 parent 1d90668 commit 31a6b91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import java.lang.reflect.{Constructor, Executable, InvocationTargetException}
import java.util.{function, Optional}
import java.util.function.Consumer

import scala.annotation.unchecked

import com.google.protobuf.{Descriptors, Any => JavaPbAny}
import io.cloudstate.javasupport.{Context, ServiceCall, ServiceCallFactory}
import io.cloudstate.javasupport.crdt.{
Expand Down Expand Up @@ -181,7 +183,7 @@ private object CrdtAnnotationHelper {

private def injector[C <: Crdt, T](clazz: Class[T]): CrdtInjector[C, T] =
injectorMap.get(clazz) match {
case Some(injector: CrdtInjector[C, T]) => injector
case Some(injector: CrdtInjector[C, T] @unchecked) => injector
case None => throw new RuntimeException(s"Don't know how to inject CRDT of type $clazz")
}

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.3.0
sbt.version=1.3.3

0 comments on commit 31a6b91

Please sign in to comment.