Use static inner class. #4298
Showing
1 changed file
with
2 additions
and
4 deletions
... | @@ -320,11 +320,8 @@ public class DirectControlServlet extends HttpServlet { | ... | @@ -320,11 +320,8 @@ public class DirectControlServlet extends HttpServlet { |
320 | } | 320 | } |
321 | return delegator; | 321 | return delegator; |
322 | } | 322 | } |
323 | } | ||
324 | |||
325 | class ISODateValueProcessor implements JsonValueProcessor { | ||
326 | public static final String module = ISODateValueProcessor.class.getName(); | ||
327 | 323 | ||
324 | protected static class ISODateValueProcessor implements JsonValueProcessor { | ||
328 | public ISODateValueProcessor() { | 325 | public ISODateValueProcessor() { |
329 | } | 326 | } |
330 | 327 | ||
... | @@ -340,4 +337,5 @@ class ISODateValueProcessor implements JsonValueProcessor { | ... | @@ -340,4 +337,5 @@ class ISODateValueProcessor implements JsonValueProcessor { |
340 | String newValue = value.toString(); | 337 | String newValue = value.toString(); |
341 | return newValue; | 338 | return newValue; |
342 | } | 339 | } |
340 | } | ||
343 | } | 341 | } | ... | ... |
-
Please register or sign in to post a comment