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