(Key<T> key, Provider<T> unscoped)
| 511 | static final Scope CUSTOM_SCOPE = |
| 512 | new Scope() { |
| 513 | @Override |
| 514 | public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { |
| 515 | return Scopes.SINGLETON.scope(key, unscoped); |
| 516 | } |
| 517 | }; |
| 518 | |
| 519 | @SuppressWarnings("InjectScopeOrQualifierAnnotationRetention") // to check failure mode |