Skip to content

Commit

Permalink
revised based on feedback
Browse files Browse the repository at this point in the history
following naming convention for workspaceGet method
  • Loading branch information
jodygarnett committed Sep 12, 2017
1 parent 1e7d9e6 commit 7c98227
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public RestWrapper workspacesGet() {
}

@GetMapping(value = "/{workspaceName}")
public RestWrapper<WorkspaceInfo> workspaceG(@PathVariable String workspaceName) {
public RestWrapper<WorkspaceInfo> workspaceGet(@PathVariable String workspaceName) {

WorkspaceInfo wkspace = catalog.getWorkspaceByName(workspaceName);
if (wkspace == null) {
Expand Down

0 comments on commit 7c98227

Please sign in to comment.