(Class<?> concreteClass)
| 147 | |
| 148 | private static final LoadingCache<Class<?>, ImmutableList<Method>> subscriberMethodsCache = CacheBuilder.newBuilder().weakKeys().build(new CacheLoader<Class<?>, ImmutableList<Method>>() { |
| 149 | @Override |
| 150 | public ImmutableList<Method> load(Class<?> concreteClass) throws Exception { |
| 151 | return getAnnotatedMethodsNotCached(concreteClass); |
| 152 | } |
| 153 | }); |
| 154 | |
| 155 | /** |
nothing calls this directly
no test coverage detected