You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by rw...@apache.org on 2014/07/29 21:11:52 UTC

svn commit: r1614463 - in /pivot/branches/2.0.x: ./ wtk/src/org/apache/pivot/wtk/BrowserApplicationContext.java

Author: rwhitcomb
Date: Tue Jul 29 19:11:51 2014
New Revision: 1614463

URL: http://svn.apache.org/r1614463
Log:
Corrected a misspelling in an error message.

This is a merge of revision 1614462 from "trunk" to "branches/2.0.x".

Modified:
    pivot/branches/2.0.x/   (props changed)
    pivot/branches/2.0.x/wtk/src/org/apache/pivot/wtk/BrowserApplicationContext.java

Propchange: pivot/branches/2.0.x/
------------------------------------------------------------------------------
  Merged /pivot/trunk:r1614462

Modified: pivot/branches/2.0.x/wtk/src/org/apache/pivot/wtk/BrowserApplicationContext.java
URL: http://svn.apache.org/viewvc/pivot/branches/2.0.x/wtk/src/org/apache/pivot/wtk/BrowserApplicationContext.java?rev=1614463&r1=1614462&r2=1614463&view=diff
==============================================================================
--- pivot/branches/2.0.x/wtk/src/org/apache/pivot/wtk/BrowserApplicationContext.java (original)
+++ pivot/branches/2.0.x/wtk/src/org/apache/pivot/wtk/BrowserApplicationContext.java Tue Jul 29 19:11:51 2014
@@ -199,7 +199,7 @@ public final class BrowserApplicationCon
                 // Load the application
                 String applicationClassName = getParameter(APPLICATION_CLASS_NAME_PARAMETER);
                 if (applicationClassName == null) {
-                    System.err.println(APPLICATION_CLASS_NAME_PARAMETER + " paramter is required.");
+                    System.err.println(APPLICATION_CLASS_NAME_PARAMETER + " parameter is required.");
                 } else {
                     try {
                         Class<?> applicationClass = Class.forName(applicationClassName);