File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ limitations under the License.
247247 ValidatingObjectInputStream vois = ValidatingObjectInputStream.builder().setInputStream(bais).get()) {
248248 // String.class is automatically accepted
249249 vois.accept(HashMap.class, Number.class, Integer.class);
250- final HashMap< String, Integer< ; map2 = (HashMap< String, Integer> ) vois.readObject();
250+ final HashMap< String, Integer> ; map2 = (HashMap< String, Integer> ) vois.readObject();
251251 assertEquals(map1, map2);
252252 }
253253 // Reusing a configuration
@@ -259,7 +259,7 @@ limitations under the License.
259259 .setInputStream(bais)
260260 .get()) {
261261 // String.class is automatically accepted
262- final HashMap< String, Integer< ; map2 = (HashMap< String, Integer< ; ) vois.readObject();
262+ final HashMap< String, Integer> ; map2 = (HashMap< String, Integer> ; ) vois.readObject();
263263 assertEquals(map1, map2);
264264 }
265265 </source >
You can’t perform that action at this time.
0 commit comments