Skip to content

Commit

Permalink
* Remove unnecessary declared Exception from Indexer.close() sig…
Browse files Browse the repository at this point in the history
…nature (pull #382)
  • Loading branch information
lchdev committed Feb 23, 2020
1 parent 5711d53 commit e6ea811
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

* Remove unnecessary declared `Exception` from `Indexer.close()` signature ([pull #382](https://github.com/bytedeco/javacpp/pull/382))
* Make sure `Parser` recognizes base classes of `struct` as `public` by default
* Fix `Parser` error on initializer lists containing C++11 style `{ ... }` for template instances
* Change the default mapping of `jboolean` to `BooleanPointer` instead of `BoolPointer`
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/bytedeco/javacpp/indexer/Indexer.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
public abstract class Indexer implements AutoCloseable {

/** Calls {@link #release()}. */
@Override public void close() throws Exception {
@Override public void close() {
release();
}

Expand Down

0 comments on commit e6ea811

Please sign in to comment.