Skip to content

Commit dcb5efe

Browse files
committed
minor test cleanup
1 parent b471e77 commit dcb5efe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/com/fasterxml/jackson/databind/deser/TestConcurrency.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
99

1010
/**
11-
* Testing for [JACKSON-237] (NPE due to race condition)
11+
* Testing for NPE due to race condition.
1212
*/
1313
public class TestConcurrency extends BaseMapTest
1414
{
@@ -18,7 +18,7 @@ public class TestConcurrency extends BaseMapTest
1818
/**********************************************
1919
*/
2020

21-
@JsonDeserialize(using=BeanDeserializer.class)
21+
@JsonDeserialize(using=CustomBeanDeserializer.class)
2222
static class Bean
2323
{
2424
public int value = 42;
@@ -34,7 +34,7 @@ static class Bean
3434
* Dummy deserializer used for verifying that partially handled (i.e. not yet
3535
* resolved) deserializers are not allowed to be used.
3636
*/
37-
static class BeanDeserializer
37+
static class CustomBeanDeserializer
3838
extends JsonDeserializer<Bean>
3939
implements ResolvableDeserializer
4040
{

0 commit comments

Comments
 (0)