[OLINGO-979] Fix codestyle issue
Project: http://git-wip-us.apache.org/repos/asf/olingo-odata4/repo Commit: http://git-wip-us.apache.org/repos/asf/olingo-odata4/commit/a6bde3be Tree: http://git-wip-us.apache.org/repos/asf/olingo-odata4/tree/a6bde3be Diff: http://git-wip-us.apache.org/repos/asf/olingo-odata4/diff/a6bde3be Branch: refs/heads/master Commit: a6bde3beea61c95b1b1a36df0f20f659150f3ec7 Parents: 7d69864 Author: Christian Amend <[email protected]> Authored: Thu Jul 14 10:53:12 2016 +0200 Committer: Christian Amend <[email protected]> Committed: Thu Jul 14 10:53:12 2016 +0200 ---------------------------------------------------------------------- .../org/apache/olingo/server/core/ODataHandlerImplTest.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/a6bde3be/lib/server-test/src/test/java/org/apache/olingo/server/core/ODataHandlerImplTest.java ---------------------------------------------------------------------- diff --git a/lib/server-test/src/test/java/org/apache/olingo/server/core/ODataHandlerImplTest.java b/lib/server-test/src/test/java/org/apache/olingo/server/core/ODataHandlerImplTest.java index 2ed5250..03a513e 100644 --- a/lib/server-test/src/test/java/org/apache/olingo/server/core/ODataHandlerImplTest.java +++ b/lib/server-test/src/test/java/org/apache/olingo/server/core/ODataHandlerImplTest.java @@ -276,7 +276,10 @@ public class ODataHandlerImplTest { final String LOCALIZED_MESSAGE = "localized message"; MetadataProcessor processor = mock(MetadataProcessor.class); - ODataApplicationException oDataApplicationException = new ODataApplicationException(ORIGINAL_MESSAGE, 425, Locale.ENGLISH, ODATA_ERRORCODE) { + ODataApplicationException oDataApplicationException = + new ODataApplicationException(ORIGINAL_MESSAGE, 425, Locale.ENGLISH, ODATA_ERRORCODE) { + private static final long serialVersionUID = 1L; + @Override public String getLocalizedMessage() { return LOCALIZED_MESSAGE;
