Skip to content

Commit a618f3e

Browse files
committed
Sync with underscore-java.
1 parent 4498516 commit a618f3e

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ U.Builder builder = U.objectBuilder()
9696
.add(U.objectBuilder()
9797
.add("streetAddress", "21 2nd Street")
9898
.add("city", "New York")
99+
.addNull("cityId")
99100
.add("state", "NY")
100101
.add("postalCode", "10021")))
101102
.add("phoneNumber", U.arrayBuilder()
@@ -108,7 +109,7 @@ U.Builder builder = U.objectBuilder()
108109
System.out.println(builder.toJson());
109110
System.out.println(builder.toXml());
110111
```
111-
```json
112+
```javascript
112113
{
113114
"firstName": "John",
114115
"lastName": "Smith",
@@ -117,6 +118,7 @@ System.out.println(builder.toXml());
117118
{
118119
"streetAddress": "21 2nd Street",
119120
"city": "New York",
121+
"cityId": null,
120122
"state": "NY",
121123
"postalCode": "10021"
122124
}
@@ -142,6 +144,7 @@ System.out.println(builder.toXml());
142144
<address array="true">
143145
<streetAddress>21 2nd Street</streetAddress>
144146
<city>New York</city>
147+
<cityId null="true"/>
145148
<state>NY</state>
146149
<postalCode>10021</postalCode>
147150
</address>

pom-central.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
<dependency>
133133
<groupId>org.awaitility</groupId>
134134
<artifactId>awaitility</artifactId>
135-
<version>[4.1.1,)</version>
135+
<version>[4.2.0,)</version>
136136
<scope>test</scope>
137137
</dependency>
138138
</dependencies>

pom-central17.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
<dependency>
136136
<groupId>org.awaitility</groupId>
137137
<artifactId>awaitility</artifactId>
138-
<version>[4.1.1,)</version>
138+
<version>[4.2.0,)</version>
139139
<scope>test</scope>
140140
</dependency>
141141
</dependencies>

pom-pack.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@
251251
<dependency>
252252
<groupId>org.awaitility</groupId>
253253
<artifactId>awaitility</artifactId>
254-
<version>[4.1.1,)</version>
254+
<version>[4.2.0,)</version>
255255
<scope>test</scope>
256256
</dependency>
257257
</dependencies>

pom-pack17.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@
246246
<dependency>
247247
<groupId>org.awaitility</groupId>
248248
<artifactId>awaitility</artifactId>
249-
<version>[4.1.1,)</version>
249+
<version>[4.2.0,)</version>
250250
<scope>test</scope>
251251
</dependency>
252252
</dependencies>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@
217217
<dependency>
218218
<groupId>org.awaitility</groupId>
219219
<artifactId>awaitility</artifactId>
220-
<version>[4.1.1,)</version>
220+
<version>[4.2.0,)</version>
221221
<scope>test</scope>
222222
</dependency>
223223
</dependencies>

0 commit comments

Comments
 (0)