Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ private TestServiceImpl(TestServiceOptions options) {
}
}

private interface TestServiceFactory extends ServiceFactory<TestService, TestServiceOptions> {}
public interface TestServiceFactory extends ServiceFactory<TestService, TestServiceOptions> {}

private static class DefaultTestServiceFactory implements TestServiceFactory {
private static final TestServiceFactory INSTANCE = new DefaultTestServiceFactory();
Expand All @@ -191,7 +191,7 @@ public TestService create(TestServiceOptions options) {
}
}

private interface TestServiceRpcFactory
public interface TestServiceRpcFactory
extends ServiceRpcFactory<TestServiceOptions> {}

private static class DefaultTestServiceRpcFactory implements TestServiceRpcFactory {
Expand Down