Skip to content

Commit

Permalink
Make AutoDispose ScopeHandlers final
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Nov 18, 2017
1 parent 79e6dbf commit 94212eb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public interface ScopeHandler {
return new LifecycleScopeProviderHandlerImpl(scope);
}

private static class MaybeScopeHandlerImpl implements ScopeHandler {
private static final class MaybeScopeHandlerImpl implements ScopeHandler {

private final Maybe<?> scope;

Expand Down Expand Up @@ -196,7 +196,7 @@ public <T> Function<Observable<? extends T>, ObservableSubscribeProxy<T>> forObs
}
}

private static class ScopeProviderHandlerImpl implements ScopeHandler {
private static final class ScopeProviderHandlerImpl implements ScopeHandler {

private final ScopeProvider scope;

Expand Down Expand Up @@ -226,7 +226,7 @@ public <T> Function<Observable<? extends T>, ObservableSubscribeProxy<T>> forObs
}
}

private static class LifecycleScopeProviderHandlerImpl implements ScopeHandler {
private static final class LifecycleScopeProviderHandlerImpl implements ScopeHandler {

private final LifecycleScopeProvider<?> scope;

Expand Down

0 comments on commit 94212eb

Please sign in to comment.