Skip to content

Commit 21c1103

Browse files
committed
Merge branch '2.10' of github.com:FasterXML/jackson-databind into 2.10
2 parents eb64f3c + 7c8769e commit 21c1103

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/perf/ManulWritePerfWithUUID.java renamed to src/test/java/perf/ManualWritePerfWithUUID.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import com.fasterxml.jackson.databind.json.JsonMapper;
1212
import com.fasterxml.jackson.databind.ser.std.StdScalarSerializer;
1313

14-
public class ManulWritePerfWithUUID
14+
public class ManualWritePerfWithUUID
1515
extends ObjectWriterTestBase<UUIDFast, UUIDSlow>
1616
{
1717
@Override
@@ -27,7 +27,7 @@ public static void main(String[] args) throws Exception
2727
for (int i = 0; i < uuids.length; ++i) {
2828
uuids[i] = UUID.randomUUID();
2929
}
30-
new ManulWritePerfWithUUID().test(new JsonMapper(),
30+
new ManualWritePerfWithUUID().test(new JsonMapper(),
3131
"faster-UUID", new UUIDFast(uuids), UUIDFast.class,
3232
"JDK-UUID", new UUIDSlow(uuids), UUIDSlow.class);
3333
}

0 commit comments

Comments
 (0)