Skip to content

Commit

Permalink
Set version to 4.5.2-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Dec 13, 2023
1 parent 2588308 commit 005833c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
</parent>

<artifactId>vertx-cassandra-client</artifactId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>

<properties>
<stack.version>4.5.1</stack.version>
<stack.version>4.5.2-SNAPSHOT</stack.version>
<!--
Update these properties in the vertx-lang-* modules too
-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class CassandraClientOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, CassandraClientOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, CassandraClientOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "contactPoints":
Expand Down Expand Up @@ -52,11 +52,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(CassandraClientOptions obj, JsonObject json) {
static void toJson(CassandraClientOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(CassandraClientOptions obj, java.util.Map<String, Object> json) {
static void toJson(CassandraClientOptions obj, java.util.Map<String, Object> json) {
if (obj.getKeyspace() != null) {
json.put("keyspace", obj.getKeyspace());
}
Expand Down

0 comments on commit 005833c

Please sign in to comment.