Update to Scala 2.13 & Akka 2.6.5 (#461)

* update scala to 2.13 & update dependencies

* fix test

* import scodec-akka

* scala 2.13 fixes

* Work around futures not completing when awaited within object constructor

Co-authored-by: Mazo <mazo2@hotmail.com>
This commit is contained in:
Jakob Gillich 2020-05-26 22:16:22 +02:00 committed by GitHub
parent 270485fa4d
commit e51e970e51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 127 additions and 139 deletions

View file

@ -0,0 +1,13 @@
package scodec.interop.akka;
import java.nio.ByteBuffer;
import akka.util.ByteString.ByteString1C;
interface PrivacyHelper {
static ByteString1C createByteString1C(byte[] array) {
return new ByteString1C(array);
}
}