Skip to content
This repository was archived by the owner on Oct 12, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,7 @@ protected ClientConfig getClientConfig() {
* @throws OAuthException
* @throws URISyntaxException
*/
public ClientResponse getResource(String url) throws IOException,
OAuthException, URISyntaxException {
public ClientResponse getResource(String url) {
return getResource(url, null, OSLCConstants.CT_RDF);
}

Expand Down Expand Up @@ -290,8 +289,7 @@ protected ClientResponse getResource(String url, Map<String, String> requestHead
* @throws OAuthException
* @throws URISyntaxException
*/
public ClientResponse deleteResource(String url)
throws IOException, OAuthException, URISyntaxException {
public ClientResponse deleteResource(String url) {

ClientResponse response = null;
RestClient restClient = new RestClient(clientConfig);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,7 @@ else if ( statusCode != HttpStatus.SC_OK && statusCode != HttpStatus.SC_MOVED_TE
* @throws JazzAuthErrorException

*/
private Boolean handleJsaServer() throws ClientProtocolException, IOException, JazzAuthErrorException
{
private Boolean handleJsaServer() {
if (null == lastRedirectResponse) {
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
*/
public class OslcQueryResultTest {
@Before
public void clearPublicURISystemProperty() throws MalformedURLException {
public void clearPublicURISystemProperty() {
System.clearProperty(OslcQueryResult.SELECT_ANY_MEMBER);
}

Expand Down