Skip to content

Commit

Permalink
Fix the busted commenting to get build going
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 20, 2018
1 parent dc2427d commit ff16cea
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -87,7 +87,10 @@ public MyChildB(String name) {
} }
} }


// 20-Apr-2018, tatu: temporarily comment out to get auto-build snapshot
/*
// [databind#1998]: leakage of state via ObjectMapper.copy() (et al) // [databind#1998]: leakage of state via ObjectMapper.copy() (et al)
public void testSharedBuilder() throws Exception public void testSharedBuilder() throws Exception
{ {
final MapperBuilder<?,?> B = defaultMapper(); final MapperBuilder<?,?> B = defaultMapper();
Expand All @@ -114,10 +117,8 @@ public void testSharedBuilder() throws Exception
System.err.println("Shared, result: "+result); System.err.println("Shared, result: "+result);
assertEquals(EXPECTED, result); assertEquals(EXPECTED, result);
} }

*/
public void testBogus() { }
// [databind#1998]: leakage of state via ObjectMapper.copy() (et al) // [databind#1998]: leakage of state via ObjectMapper.copy() (et al)
/*
public void testSharingViaRebuild() throws Exception public void testSharingViaRebuild() throws Exception
{ {
final MapperBuilder<?,?> B = defaultMapper(); final MapperBuilder<?,?> B = defaultMapper();
Expand Down Expand Up @@ -151,5 +152,4 @@ private MapperBuilder<?,?> defaultMapper()
incl.withValueInclusion(JsonInclude.Include.NON_EMPTY)) incl.withValueInclusion(JsonInclude.Include.NON_EMPTY))
; ;
} }
*/
} }

0 comments on commit ff16cea

Please sign in to comment.