minor cleanup
diff --git a/src/main/java/com/fasterxml/jackson/core/json/JsonWriteContext.java b/src/main/java/com/fasterxml/jackson/core/json/JsonWriteContext.java
index a9c863e..dadec64 100644
--- a/src/main/java/com/fasterxml/jackson/core/json/JsonWriteContext.java
+++ b/src/main/java/com/fasterxml/jackson/core/json/JsonWriteContext.java
@@ -42,7 +42,7 @@
     /* Location/state information (minus source reference)
     /**********************************************************
      */
-    
+
     /**
      * Name of the field of which value is to be parsed; only
      * used for OBJECT contexts
@@ -53,7 +53,7 @@
      * @since 2.5
      */
     protected Object _currentValue;
-    
+
     /**
      * Marker used to indicate that we just received a name, and
      * now expect a value
@@ -163,7 +163,7 @@
      */
     public int writeFieldName(String name) throws JsonProcessingException {
         if (_gotName) {
-            return JsonWriteContext.STATUS_EXPECT_VALUE;
+            return STATUS_EXPECT_VALUE;
         }
         _gotName = true;
         _currentName = name;