At http://bazaar.launchpad.net/~ndb-connectors/ndb-connectors/devel
------------------------------------------------------------
revno: 328
revision-id: mtaylor@stripped
parent: mtaylor@stripped
committer: Monty Taylor <mtaylor@stripped>
branch nick: devel
timestamp: Tue 2007-12-04 15:45:03 -0800
message:
Fixed spelling typo.
Added files to update_from_swigsvn.sh
modified:
swig/SWIG/Lib/java/enumtypesafe.swg enumtypesafe.swg-20071104211339-fod7yzi8t7xd3g0w-911
swig/SWIG/Source/Modules/java.cxx java.cxx-20071104211339-fod7yzi8t7xd3g0w-1275
swig/update_from_swigsvn.sh update_from_swigsvn.-20071104211339-fod7yzi8t7xd3g0w-5
=== modified file 'swig/SWIG/Lib/java/enumtypesafe.swg'
--- a/swig/SWIG/Lib/java/enumtypesafe.swg 2007-12-04 23:39:01 +0000
+++ b/swig/SWIG/Lib/java/enumtypesafe.swg 2007-12-04 23:45:03 +0000
@@ -94,20 +94,20 @@
throw new IllegalArgumentException("No enum " + $javaclassname.class + " with value "
+ swigValue);
}
- $supresswarnings
+ $suppresswarnings
private $javaclassname(String swigName) {
this.swigName = swigName;
this.swigValue = swigNext++;
}
- $supresswarnings
+ $suppresswarnings
private $javaclassname(String swigName, int swigValue) {
this.swigName = swigName;
this.swigValue = swigValue;
swigNext = swigValue+1;
}
- $supresswarnings
+ $suppresswarnings
private $javaclassname(String swigName, $javaclassname swigEnum) {
this.swigName = swigName;
this.swigValue = swigEnum.swigValue;
=== modified file 'swig/SWIG/Source/Modules/java.cxx'
--- a/swig/SWIG/Source/Modules/java.cxx 2007-12-04 23:39:01 +0000
+++ b/swig/SWIG/Source/Modules/java.cxx 2007-12-04 23:45:03 +0000
@@ -1201,9 +1201,9 @@
"}", NIL);
if (use_java5) {
- Replaceall(enum_code, "$supresswarnings", "@SuppressWarnings(\"unused\")");
+ Replaceall(enum_code, "$suppresswarnings", "@SuppressWarnings(\"unused\")");
} else {
- Replaceall(enum_code, "$supresswarnings", "");
+ Replaceall(enum_code, "$suppresswarnings", "");
}
Replaceall(enum_code, "$javaclassname", symname);
@@ -1693,11 +1693,11 @@
// Substitute various strings into the above template
if (use_java5) {
- Replaceall(proxy_class_code, "$supresswarnings", "@SuppressWarnings(\"unused\")");
- Replaceall(proxy_class_def, "$supresswarnings", "@SuppressWarnings(\"unused\")");
+ Replaceall(proxy_class_code, "$suppresswarnings", "@SuppressWarnings(\"unused\")");
+ Replaceall(proxy_class_def, "$suppresswarnings", "@SuppressWarnings(\"unused\")");
} else {
- Replaceall(proxy_class_code, "$supresswarnings", "");
- Replaceall(proxy_class_def, "$supresswarnings", "");
+ Replaceall(proxy_class_code, "$suppresswarnings", "");
+ Replaceall(proxy_class_def, "$suppresswarnings", "");
}
Replaceall(proxy_class_code, "$javaclassname", proxy_class_name);
@@ -2841,9 +2841,9 @@
"}\n", "\n", NIL);
if (use_java5) {
- Replaceall(swigtype, "$supresswarnings", "@SuppressWarnings(\"unused\")");
+ Replaceall(swigtype, "$suppresswarnings", "@SuppressWarnings(\"unused\")");
} else {
- Replaceall(swigtype, "$supresswarnings", "");
+ Replaceall(swigtype, "$suppresswarnings", "");
}
Replaceall(swigtype, "$javaclassname", classname);
Replaceall(swigtype, "$module", module_class_name);
=== modified file 'swig/update_from_swigsvn.sh'
--- a/swig/update_from_swigsvn.sh 2007-12-04 19:27:41 +0000
+++ b/swig/update_from_swigsvn.sh 2007-12-04 23:45:03 +0000
@@ -2,7 +2,9 @@
bzr diff -r231..309 SWIG/Source/Makefile.am > SWIG.patch
bzr diff -r290..293 SWIG/Makefile.in >> SWIG.patch
-bzr diff -r231..325 SWIG/Lib/java/enums.swg >> SWIG.patch
+bzr diff -r324..325 SWIG/Lib/java/enums.swg >> SWIG.patch
+bzr diff -r324..328 SWIG/Lib/java/enumtypesafe.swg >> SWIG.patch
+bzr diff -r324..328 SWIG/Source/Modules/java.cxx >> SWIG.patch
rm -rf SWIG
svn export https://swig.svn.sourceforge.net/svnroot/swig/tags/rel-1.3.33 SWIG
rm SWIG/Tools/config/config.guess SWIG/Tools/config/config.sub
| Thread |
|---|
| • Rev 328: Fixed spelling typo. in http://bazaar.launchpad.net/~ndb-connectors/ndb-connectors/devel | Monty Taylor | 5 Dec |