You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (Class<?> cls = exceptionClass; !cls.equals(Object.class) && value == null; cls = cls.getSuperclass()) {
// ★ first check for classifiableClass<? extendsT> exceptionClass = (Class<? extendsT>) classifiable.getClass();
if (this.classified.containsKey(exceptionClass)) {
returnthis.classified.get(exceptionClass);
}
// check for subclassesCvalue = null;
// ★ second check for classifiable by first loopfor (Class<?> cls = exceptionClass; !cls.equals(Object.class) && value == null; cls = cls.getSuperclass()) {
value = this.classified.get(cls);
}
The text was updated successfully, but these errors were encountered:
spring-retry/src/main/java/org/springframework/classify/SubclassClassifier.java
Line 119 in f25d6e8
The text was updated successfully, but these errors were encountered: