Skip to content

Commit

Permalink
TEIID-2973 - Trying to fix CI build from @deprecated error
Browse files Browse the repository at this point in the history
  • Loading branch information
rareddy committed Oct 12, 2014
1 parent b27b738 commit 0f7dd32
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@ public boolean isRequestedSessionIdFromURL() {
return delegate.isRequestedSessionIdFromURL();
}

@deprecated
/**
* @deprecated
*/
public boolean isRequestedSessionIdFromUrl() {
return delegate.isRequestedSessionIdFromUrl();
}
Expand Down Expand Up @@ -253,7 +255,9 @@ public RequestDispatcher getRequestDispatcher(String s) {
return delegate.getRequestDispatcher(s);
}

@SuppressWarnings("deprecation")
/**
* @deprecated
*/
public String getRealPath(String s) {
return delegate.getRealPath(s);
}
Expand Down

0 comments on commit 0f7dd32

Please sign in to comment.