Skip to content

Commit

Permalink
Delete deprecated methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
jleyba committed Dec 30, 2013
1 parent 3eb81c5 commit 075251e
Showing 1 changed file with 0 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,31 +102,6 @@ protected Logger getLogger() {
return Logger.getLogger(getClass().getName());
}

/**
* @deprecated Use {@link JsonHttpRemoteConfig} instead.
*/
@Deprecated
protected ResultConfig addNewGetMapping(String path, Class<? extends RestishHandler> implementationClass) {
return mappings.addNewGetMapping(path, implementationClass);
}

/**
* @deprecated Use {@link JsonHttpRemoteConfig} instead.
*/
@Deprecated
protected ResultConfig addNewPostMapping(String path, Class<? extends RestishHandler> implementationClass) {
return mappings.addNewPostMapping(path, implementationClass);
}

/**
* @deprecated Use {@link JsonHttpRemoteConfig} instead.
*/
@Deprecated
protected ResultConfig addNewDeleteMapping(String path,
Class<? extends RestishHandler> implementationClass) {
return mappings.addNewDeleteMapping(path, implementationClass);
}

@Override
protected void service(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
Expand Down

0 comments on commit 075251e

Please sign in to comment.