Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dfbf47b

Browse files
committed
Merge branch '2.19' into 2.x
2 parents 4d78b07 + 6b26839 commit dfbf47b

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/test/java/com/fasterxml/jackson/core/json/BoundsChecksWithJsonFactoryTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ void boundsWithCharArrayInput() throws Exception {
7777
(data,offset,len)->PARSER_F.createParser(data, offset, len));
7878
}
7979

80-
@Test
8180
private void boundsWithCharArrayInput(CharBackedCreation creator) throws Exception
8281
{
8382
final char[] DATA = new char[10];
@@ -92,7 +91,6 @@ private void boundsWithCharArrayInput(CharBackedCreation creator) throws Excepti
9291
boundsWithCharArrayInput(creator, null, 0, 3);
9392
}
9493

95-
@Test
9694
private void boundsWithCharArrayInput(CharBackedCreation creator,
9795
char[] data, int offset, int len) throws Exception
9896
{

src/test/java/com/fasterxml/jackson/core/read/loc/LocationDuringStreamParsingTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ void tokenLocations() throws Exception
4444
}
4545
}
4646

47-
@Test
4847
private void locationAtEndOfParse(LocationTestCase test) throws Exception
4948
{
5049
JsonParser p = createParserUsingStream(test.json, "UTF8");
@@ -55,7 +54,6 @@ private void locationAtEndOfParse(LocationTestCase test) throws Exception
5554
p.close();
5655
}
5756

58-
@Test
5957
private void initialLocation(LocationTestCase test) throws Exception
6058
{
6159
JsonParser p = createParserUsingStream(test.json, "UTF8");
@@ -65,7 +63,6 @@ private void initialLocation(LocationTestCase test) throws Exception
6563
assertLocation(loc, at(1, 1, 0));
6664
}
6765

68-
@Test
6966
private void tokenLocations(LocationTestCase test) throws Exception
7067
{
7168
JsonParser p = createParserUsingStream(test.json, "UTF8");

0 commit comments

Comments
 (0)