Skip to content

Commit

Permalink
Merge pull request #5191 from sdedic/hotfix/lsp-compilation-java8
Browse files Browse the repository at this point in the history
Do not inherit "throws Exception" from Callable to compile on JDK8
  • Loading branch information
mbien authored Jan 4, 2023
2 parents e707a7b + cbbf726 commit 316a3da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ public Path downloadWallet(OCIItem dbInstance, String password, String parentPat
}

@FunctionalInterface
public interface OCIOperation<V,E extends Exception> extends Callable<V> {
public interface OCIOperation<V,E extends Exception> {
/**
* Performs the project operation, returning a value. The method may throw one
* checked exception.
Expand Down

0 comments on commit 316a3da

Please sign in to comment.