You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/06/22 20:27:05 UTC

svn commit: r787343 - in /commons/sandbox/runtime/trunk/src/main/native: include/acr_error.h shared/error.c

Author: mturk
Date: Mon Jun 22 18:27:04 2009
New Revision: 787343

URL: http://svn.apache.org/viewvc?rev=787343&view=rev
Log:
Fix typo

Modified:
    commons/sandbox/runtime/trunk/src/main/native/include/acr_error.h
    commons/sandbox/runtime/trunk/src/main/native/shared/error.c

Modified: commons/sandbox/runtime/trunk/src/main/native/include/acr_error.h
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/include/acr_error.h?rev=787343&r1=787342&r2=787343&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/include/acr_error.h (original)
+++ commons/sandbox/runtime/trunk/src/main/native/include/acr_error.h Mon Jun 22 18:27:04 2009
@@ -44,7 +44,7 @@
     ACR_EX_EINVAL,          /* java/lang/IllegalArgumentException */
     ACR_EX_EINDEX,          /* java/lang/IndexOutOfBoundsException */
     ACR_EX_ECCAST,          /* java/lang/ClassCastException */
-    ACR_EX_EINSTANCE,       /* java/lang/InstatntiationException */
+    ACR_EX_EINSTANCE,       /* java/lang/InstantiationException */
     ACR_EX_EINTERNAL,       /* java/lang/InternalError */
     ACR_EX_ESECURITY,       /* java/lang/SecurityException */
     ACR_EX_ENOTIMPL,        /* java/lang/UnsupportedOperationException */

Modified: commons/sandbox/runtime/trunk/src/main/native/shared/error.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/shared/error.c?rev=787343&r1=787342&r2=787343&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/shared/error.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/shared/error.c Mon Jun 22 18:27:04 2009
@@ -30,7 +30,7 @@
     "java/lang/IllegalArgumentException",
     "java/lang/IndexOutOfBoundsException",
     "java/lang/ClassCastException",
-    "java/lang/InstatntiationException",
+    "java/lang/InstantiationException",
     "java/lang/InternalError",
     "java/lang/SecurityException",
     "java/lang/UnsupportedOperationException",