Skip to content

Commit

Permalink
Hide the non-public APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
jhalterman committed Jun 30, 2015
1 parent a83357d commit 63acb91
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/main/java/net/jodah/recurrent/CompletableFuture.java
Expand Up @@ -29,7 +29,7 @@ void setFuture(Future<T> delegate) {
this.delegate = delegate;
}

public void complete(T result, Throwable failure) {
void complete(T result, Throwable failure) {
this.result = result;
this.failure = failure;
done = true;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/jodah/recurrent/Invocation.java
Expand Up @@ -12,7 +12,7 @@
* @author Jonathan Halterman
* @param <T> invocation result type
*/
public class Invocation {
class Invocation {
private RetryPolicy retryPolicy;
private Callable<?> callable;
private ScheduledExecutorService executor;
Expand Down
12 changes: 0 additions & 12 deletions src/main/java/net/jodah/recurrent/Runnables.java

This file was deleted.

0 comments on commit 63acb91

Please sign in to comment.