[OLINGO-206] fix checkstyle issues
Project: http://git-wip-us.apache.org/repos/asf/olingo-odata4/repo Commit: http://git-wip-us.apache.org/repos/asf/olingo-odata4/commit/66293849 Tree: http://git-wip-us.apache.org/repos/asf/olingo-odata4/tree/66293849 Diff: http://git-wip-us.apache.org/repos/asf/olingo-odata4/diff/66293849 Branch: refs/heads/master Commit: 66293849794c304b4bcde33a5e91aa8287366576 Parents: d953278 Author: Stephan Klevenz <[email protected]> Authored: Fri Mar 21 15:06:17 2014 +0100 Committer: Stephan Klevenz <[email protected]> Committed: Fri Mar 21 15:06:17 2014 +0100 ---------------------------------------------------------------------- .../server/core/uri/validator/SystemQueryValidator.java | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/66293849/lib/server-core/src/main/java/org/apache/olingo/server/core/uri/validator/SystemQueryValidator.java ---------------------------------------------------------------------- diff --git a/lib/server-core/src/main/java/org/apache/olingo/server/core/uri/validator/SystemQueryValidator.java b/lib/server-core/src/main/java/org/apache/olingo/server/core/uri/validator/SystemQueryValidator.java index 2d9f046..b294136 100644 --- a/lib/server-core/src/main/java/org/apache/olingo/server/core/uri/validator/SystemQueryValidator.java +++ b/lib/server-core/src/main/java/org/apache/olingo/server/core/uri/validator/SystemQueryValidator.java @@ -173,8 +173,7 @@ public class SystemQueryValidator { if (lastPathSegemnt instanceof UriResourcePartTyped) { if (((UriResourcePartTyped) lastPathSegemnt).isCollection()) { idx = 14; - } - else { + } else { idx = 13; } } else { @@ -186,8 +185,7 @@ public class SystemQueryValidator { if (lastPathSegemnt instanceof UriResourcePartTyped) { if (((UriResourcePartTyped) lastPathSegemnt).isCollection()) { idx = 7; - } - else { + } else { idx = 9; } } else { @@ -211,8 +209,7 @@ public class SystemQueryValidator { if (lastPathSegemnt instanceof UriResourcePartTyped) { if (((UriResourcePartTyped) lastPathSegemnt).isCollection()) { idx = 17; - } - else { + } else { idx = 16; } } else { @@ -228,8 +225,7 @@ public class SystemQueryValidator { if (secondLastPathSegment instanceof UriResourcePartTyped) { if (((UriResourcePartTyped) secondLastPathSegment).isCollection()) { idx = 11; - } - else { + } else { idx = 12; } } else {
