Skip to content

Commit 0e1a449

Browse files
committed
Fix a silly non-static-but-should-be-static allocation
1 parent a87f01c commit 0e1a449

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jr-objects/src/main/java/com/fasterxml/jackson/jr/ob/impl/ValueWriterLocator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
public class ValueWriterLocator extends ValueLocatorBase
2626
{
27-
protected final BeanPropertyWriter[] NO_PROPS_FOR_WRITE = new BeanPropertyWriter[0];
27+
protected final static BeanPropertyWriter[] NO_PROPS_FOR_WRITE = new BeanPropertyWriter[0];
2828

2929
/*
3030
/**********************************************************************

0 commit comments

Comments
 (0)