]> source.dussan.org Git - vaadin-framework.git/commitdiff
javadoc fix
authorJani Laakso <jani.laakso@itmill.com>
Thu, 7 Feb 2008 13:17:36 +0000 (13:17 +0000)
committerJani Laakso <jani.laakso@itmill.com>
Thu, 7 Feb 2008 13:17:36 +0000 (13:17 +0000)
svn changeset:3730/svn branch:trunk

src/com/itmill/toolkit/Application.java

index 2dbca6560edd8ee00b2c69b560abf9a31d854e9e..ec9c8f8b795945c6f779ee90ac93f4b5d5794e89 100644 (file)
@@ -1018,7 +1018,7 @@ public abstract class Application implements URIHandler, Terminal.ErrorListener
      * is thrown by the <code>setVariable</code> to the terminal. The default
      * implementation sets the exceptions as <code>ComponentErrors</code> to
      * the component that initiated the exception and prints stack trace to
-     * System.err.
+     * standard error stream.
      * </p>
      * <p>
      * You can safely override this method in your application in order to
@@ -1030,7 +1030,7 @@ public abstract class Application implements URIHandler, Terminal.ErrorListener
      * @see com.itmill.toolkit.terminal.Terminal.ErrorListener#terminalError(com.itmill.toolkit.terminal.Terminal.ErrorEvent)
      */
     public void terminalError(Terminal.ErrorEvent event) {
-        // throw it to System.err too
+        // throw it to standard error stream too
         event.getThrowable().printStackTrace();
 
         // Finds the original source of the error/exception