Skip to content

Commit a6d345c

Browse files
committed
tiny clean up
1 parent 681e399 commit a6d345c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/com/fasterxml/jackson/databind/convert/MapConversionsTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,14 @@
1313

1414
public class MapConversionsTest
1515
{
16-
final ObjectMapper MAPPER = new ObjectMapper();
17-
1816
enum AB { A, B; }
1917

2018
static class Bean {
2119
public Integer A;
2220
public String B;
2321
}
2422

25-
// [Issue#287]
23+
// [databind#287]
2624

2725
@JsonSerialize(converter=RequestConverter.class)
2826
static class Request {
@@ -48,6 +46,8 @@ public Map<String,Object> convert(final Request value) {
4846
/**********************************************************
4947
*/
5048

49+
private final ObjectMapper MAPPER = new ObjectMapper();
50+
5151
/**
5252
* Test that verifies that we can go between couple of types of Maps...
5353
*/

0 commit comments

Comments
 (0)