@@ -152,17 +152,16 @@ public void testProviderConfig() throws Exception
152
152
DefaultSerializerProvider prov = (DefaultSerializerProvider ) mapper .getSerializerProvider ();
153
153
assertEquals (0 , prov .cachedSerializersCount ());
154
154
// and then should get one constructed for:
155
- Map <String ,Object > result = this . writeAndMap (mapper , new AnnoBean ());
155
+ Map <String ,Object > result = writeAndMap (mapper , new AnnoBean ());
156
156
assertEquals (2 , result .size ());
157
157
assertEquals (Integer .valueOf (1 ), result .get ("x" ));
158
158
assertEquals (Integer .valueOf (2 ), result .get ("y" ));
159
159
160
- /* Note: it is 2 because we'll also get serializer for basic 'int', not
161
- * just AnnoBean
162
- */
163
- /* 12-Jan-2010, tatus: Actually, probably more, if and when we typing
164
- * aspects are considered (depending on what is cached)
165
- */
160
+ // Note: it is 2 because we'll also get serializer for basic 'int', not
161
+ // just AnnoBean
162
+
163
+ // 12-Jan-2010, tatus: Actually, probably more, if and when we typing
164
+ // aspects are considered (depending on what is cached)
166
165
int count = prov .cachedSerializersCount ();
167
166
if (count < 2 ) {
168
167
fail ("Should have at least 2 cached serializers, got " +count );
0 commit comments