diff options
Diffstat (limited to 'codemaker/source')
-rw-r--r-- | codemaker/source/javamaker/javatype.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/codemaker/source/javamaker/javatype.cxx b/codemaker/source/javamaker/javatype.cxx index 3eb8639b0c10..22772854ee4c 100644 --- a/codemaker/source/javamaker/javatype.cxx +++ b/codemaker/source/javamaker/javatype.cxx @@ -2,9 +2,9 @@ * * $RCSfile: javatype.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: pl $ $Date: 2001-05-10 14:16:41 $ + * last change: $Author: jsc $ $Date: 2001-08-02 12:53:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -877,7 +877,7 @@ sal_Bool InterfaceType::dumpFile(FileStream& o) else o << "null;\n"; - o << "\n" << indent() << "public static Object UNORUNTIMEDATA = null;\n"; +// o << "\n" << indent() << "public static Object UNORUNTIMEDATA = null;\n"; dec(); o << "}\n\n"; @@ -1502,7 +1502,7 @@ sal_Bool StructureType::dumpFile(FileStream& o) o << " };\n"; } - o << "\n" << indent() << "public static Object UNORUNTIMEDATA = null;\n"; +// o << "\n" << indent() << "public static Object UNORUNTIMEDATA = null;\n"; dec(); o << "}\n"; @@ -1664,7 +1664,7 @@ sal_Bool ExceptionType::dumpFile(FileStream& o) o << " };\n"; } - o << "\n" << indent() << "public static Object UNORUNTIMEDATA = null;\n"; +// o << "\n" << indent() << "public static Object UNORUNTIMEDATA = null;\n"; dec(); o << "}\n"; @@ -1817,7 +1817,7 @@ sal_Bool EnumType::dumpFile(FileStream& o) dec(); o << indent() << "}\n"; - o << "\n" << indent() << "public static Object UNORUNTIMEDATA = null;\n"; +// o << "\n" << indent() << "public static Object UNORUNTIMEDATA = null;\n"; dec(); o << "}\n"; |