Skip to content

Commit

Permalink
Fix nullability
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Dec 10, 2024
1 parent e70d2eb commit 9e8f2f6
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import dagger.Binds;
import dagger.Module;
import javax.annotation.Nullable;
import org.opentripplanner.ext.stopconsolidation.StopConsolidationRepository;
import org.opentripplanner.ext.stopconsolidation.internal.DefaultStopConsolidationRepository;

Expand All @@ -13,6 +12,5 @@
@Module
public interface StopConsolidationRepositoryModule {
@Binds
@Nullable
StopConsolidationRepository bindRepository(@Nullable DefaultStopConsolidationRepository repo);
StopConsolidationRepository bindRepository(DefaultStopConsolidationRepository repo);
}

0 comments on commit 9e8f2f6

Please sign in to comment.