aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/vaadin/tools/ReflectTools.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/vaadin/tools/ReflectTools.java b/src/com/vaadin/tools/ReflectTools.java
index 2fc2125842..9f0667f90e 100644
--- a/src/com/vaadin/tools/ReflectTools.java
+++ b/src/com/vaadin/tools/ReflectTools.java
@@ -15,8 +15,8 @@ import java.lang.reflect.Method;
public class ReflectTools {
/**
* Locates the method in the given class. Returns null if the method is not
- * found. This method never throws exceptions. Errors in locating methods
- * are considered serious problems and are output to standard error.
+ * found. Throws an ExceptionInInitializerError if there is a problem
+ * locating the method as this is mainly called from static blocks.
*
* @param cls
* Class that contains the method