Skip to content

Commit

Permalink
Change method visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksanderMielczarek committed Nov 6, 2016
1 parent 2639e64 commit a8bf752
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public AbstractObservableCacheService(T observableCache) {
}
}

public abstract String creatorClassImpl();
protected abstract String creatorClassImpl();

public <T> T createObservableCacheService(Class<T> observableCacheServiceClass) {
return observableCacheServiceCreator.createObservableCacheService(observableCacheServiceClass, observableCache);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public ObservableCacheService(ObservableCache observableCache) {
}

@Override
public String creatorClassImpl() {
protected String creatorClassImpl() {
return "com.github.aleksandermielczarek.observablecache.service.ObservableCacheServiceCreatorImpl";
}

Expand Down

0 comments on commit a8bf752

Please sign in to comment.