Merge "Groups-API: Move NotImplemented class to correct place"
diff --git a/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/api/groups/Groups.java b/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/api/groups/Groups.java
index 608abd6..3b31000 100644
--- a/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/api/groups/Groups.java
+++ b/gerrit-extension-api/src/main/java/com/google/gerrit/extensions/api/groups/Groups.java
@@ -174,31 +174,31 @@
public String getSuggest() {
return suggest;
}
+ }
- /**
- * A default implementation which allows source compatibility
- * when adding new methods to the interface.
- **/
- class NotImplemented implements Groups {
- @Override
- public GroupApi id(String id) throws RestApiException {
- throw new NotImplementedException();
- }
+ /**
+ * A default implementation which allows source compatibility
+ * when adding new methods to the interface.
+ **/
+ class NotImplemented implements Groups {
+ @Override
+ public GroupApi id(String id) throws RestApiException {
+ throw new NotImplementedException();
+ }
- @Override
- public GroupApi create(String name) throws RestApiException {
- throw new NotImplementedException();
- }
+ @Override
+ public GroupApi create(String name) throws RestApiException {
+ throw new NotImplementedException();
+ }
- @Override
- public GroupApi create(GroupInput input) throws RestApiException {
- throw new NotImplementedException();
- }
+ @Override
+ public GroupApi create(GroupInput input) throws RestApiException {
+ throw new NotImplementedException();
+ }
- @Override
- public ListRequest list() {
- throw new NotImplementedException();
- }
+ @Override
+ public ListRequest list() {
+ throw new NotImplementedException();
}
}
}