Skip to content

Commit

Permalink
Fix minor style errros
Browse files Browse the repository at this point in the history
  • Loading branch information
mziccard committed Apr 19, 2016
1 parent 357c779 commit ccf9b62
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public abstract class BatchResult<T, E extends BaseServiceException> {
private T result;
private boolean completed = false;
private E error;
private List<Callback<T, E>> toBeNotified = new LinkedList<>();
private final List<Callback<T, E>> toBeNotified = new LinkedList<>();

/**
* Returns {@code true} if the batch has been completed and the result is available; {@code false}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import com.google.cloud.BaseServiceException;
import com.google.cloud.BatchResult;

import org.easymock.EasyMock;
Expand Down

0 comments on commit ccf9b62

Please sign in to comment.