Skip to content

Commit

Permalink
Merge pull request #2853 from binarylu/ALLUXIO-1787
Browse files Browse the repository at this point in the history
[ALLUXIO-1787] Mark alluxio.resource.DummyCloseableResource final
  • Loading branch information
apc999 committed Mar 17, 2016
2 parents 1c46ccd + 4d1e62f commit 14b6beb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* A dummy extension of CloseableResource which doesn't do anything in the close method.
*/
public class DummyCloseableResource<T> extends CloseableResource<T> {
public final class DummyCloseableResource<T> extends CloseableResource<T> {
public DummyCloseableResource(T resource) {
super(resource);
}
Expand Down

0 comments on commit 14b6beb

Please sign in to comment.