Skip to content

Commit

Permalink
Merge branch 'main' into renovate/nl.jqno.equalsverifier-equalsverifi…
Browse files Browse the repository at this point in the history
…er-3.x
  • Loading branch information
davidtaylor-juul committed Jan 16, 2024
2 parents fe61e94 + 6390817 commit 4521d74
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ kotlin-js = { id = "org.jetbrains.kotlin.js", version.ref = "kotlin" }
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
kotlinter = { id = "org.jmailen.kotlinter", version = "4.1.1" }
kotlinx-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
maven-publish = { id = "com.vanniktech.maven.publish", version = "0.26.0" }
maven-publish = { id = "com.vanniktech.maven.publish", version = "0.27.0" }
6 changes: 6 additions & 0 deletions koap/api/koap.api
Original file line number Diff line number Diff line change
Expand Up @@ -363,10 +363,16 @@ public abstract class com/juul/koap/Message$Option$Observe$Registration {

public final class com/juul/koap/Message$Option$Observe$Registration$Deregister : com/juul/koap/Message$Option$Observe$Registration {
public static final field INSTANCE Lcom/juul/koap/Message$Option$Observe$Registration$Deregister;
public fun equals (Ljava/lang/Object;)Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}

public final class com/juul/koap/Message$Option$Observe$Registration$Register : com/juul/koap/Message$Option$Observe$Registration {
public static final field INSTANCE Lcom/juul/koap/Message$Option$Observe$Registration$Register;
public fun equals (Ljava/lang/Object;)Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}

public final class com/juul/koap/Message$Option$ProxyScheme : com/juul/koap/Message$Option {
Expand Down
4 changes: 2 additions & 2 deletions koap/src/commonMain/kotlin/Message.kt
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,8 @@ sealed class Message {
* - `1` (deregister) removes the entry from the list, if present.
*/
sealed class Registration {
object Register : Registration()
object Deregister : Registration()
data object Register : Registration()
data object Deregister : Registration()
}

/**
Expand Down

0 comments on commit 4521d74

Please sign in to comment.