Author: chromatic
Date: Sat Apr 14 10:28:15 2007
New Revision: 18203
Modified:
trunk/src/ops/object.ops
Log:
[Ops] Remove trailing spaces.
Modified: trunk/src/ops/object.ops
==============================================================================
--- trunk/src/ops/object.ops (original)
+++ trunk/src/ops/object.ops Sat Apr 14 10:28:15 2007
@@ -412,13 +412,13 @@
if (!PMC_IS_NULL(ns))
Parrot_PCCINVOKE(interp, ns,
string_from_const_cstring(interp, "get_class", 0), "->P", &class);
-
+
/* If class is not found, throw an exception; otherwise, put it in $1. */
if (PMC_IS_NULL(class))
real_exception(interp, next, NO_CLASS, "Class '%Ss' doesn't exist", $2);
else
$1 = class;
-
+
goto ADDRESS(next);
}
@@ -432,7 +432,7 @@
if (!PMC_IS_NULL(ns))
Parrot_PCCINVOKE(interp, ns,
string_from_const_cstring(interp, "get_class", 0), "->P", &class);
-
+
/* If class is not found, throw an exception; otherwise, put it in $1. */
if (PMC_IS_NULL(class)) {
STRING *name = readable_name(interp, $2);
@@ -441,7 +441,7 @@
else {
$1 = class;
}
-
+
goto ADDRESS(next);
}