File tree Expand file tree Collapse file tree 4 files changed +4
-0
lines changed
linda-test/src/main/java/it/unibo/coordination/linda/test
tusow-service/src/main/kotlin/it/unibo/coordination/tusow Expand file tree Collapse file tree 4 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ public void testFailedMatch() {
48
48
Assert .assertEquals (Collections .emptyMap (), match .toMap ());
49
49
}
50
50
51
+ @ SuppressWarnings ("unchecked" )
51
52
@ Test
52
53
public void testSuccessfulMatch () {
53
54
final Triplet <T , TT , M > successfulMatch = getSuccessfulMatch ();
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import org.slf4j.LoggerFactory
14
14
import java.util.concurrent.CompletableFuture
15
15
import java.util.concurrent.ExecutionException
16
16
17
+ @Suppress(" DEPRECATION" )
17
18
class Service : AbstractVerticle () {
18
19
19
20
private val deployment = CompletableFuture <Service >()
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ interface UsersApi : Api {
12
12
fun updateUser (identifier : String , newUserData : User , promise : Promise <User >)
13
13
14
14
companion object {
15
+ @Suppress(" UNUSED_PARAMETER" )
15
16
@JvmStatic
16
17
operator fun get (context : RoutingContext ): UsersApi {
17
18
throw UnsupportedOperationException (" not implemented" )
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import it.unibo.presentation.Serializer
16
16
import java.util.*
17
17
import java.util.stream.Collectors
18
18
19
+ @Suppress(" DEPRECATION" )
19
20
class UsersPath : Path (" /users" ) {
20
21
override fun setupRoutes () {
21
22
addRoute(HttpMethod .POST , Handler { post(it) })
You can’t perform that action at this time.
0 commit comments