Browse Source

- fix accidental use of JDK 1.8 method

jrivard 9 years ago
parent
commit
19bb2bf144
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pwm/servlet/src/password/pwm/http/servlet/AbstractPwmServlet.java

+ 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;
             }
         }
-        throw new IllegalStateException("unable to determine PwmServletDefinition for class " + this.getClass().getTypeName());
+        throw new IllegalStateException("unable to determine PwmServletDefinition for class " + this.getClass().getName());
     }
 }