Skip to content

Commit

Permalink
[ALLUXIO-1787] Mark alluxio.resource.DummyCloseableResource final
Browse files Browse the repository at this point in the history
  • Loading branch information
binarylu committed Mar 17, 2016
1 parent a2e2c75 commit 4d1e62f
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 4d1e62f

Please sign in to comment.