Ver código fonte

- fix accidental use of JDK 1.8 method

jrivard 9 anos atrás
pai
commit
19bb2bf144

+ 1 - 1
pwm/servlet/src/password/pwm/http/servlet/AbstractPwmServlet.java

@@ -287,6 +287,6 @@ public abstract class AbstractPwmServlet extends HttpServlet implements PwmServl
                 return pwmServletDefinition;
                 return pwmServletDefinition;
             }
             }
         }
         }
-        throw new IllegalStateException("unable to determine PwmServletDefinition for class " + this.getClass().getTypeName());
+        throw new IllegalStateException("unable to determine PwmServletDefinition for class " + this.getClass().getName());
     }
     }
 }
 }