diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-03-16 04:16:50 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-03-16 04:16:50 +0000 |
commit | af701afba691dfc175d8bc9d8b1e886964d99a39 (patch) | |
tree | f8688dd34bbae273310dfe049c100f2398953242 /cpp/src/Slice/JavaUtil.cpp | |
parent | Changed the names of the Parser and ErrorReporter classes to conform with (diff) | |
download | ice-af701afba691dfc175d8bc9d8b1e886964d99a39.tar.bz2 ice-af701afba691dfc175d8bc9d8b1e886964d99a39.tar.xz ice-af701afba691dfc175d8bc9d8b1e886964d99a39.zip |
removing __getClassIds
Diffstat (limited to 'cpp/src/Slice/JavaUtil.cpp')
-rw-r--r-- | cpp/src/Slice/JavaUtil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Slice/JavaUtil.cpp b/cpp/src/Slice/JavaUtil.cpp index 17d446d7472..57f5a1c6b4c 100644 --- a/cpp/src/Slice/JavaUtil.cpp +++ b/cpp/src/Slice/JavaUtil.cpp @@ -572,7 +572,7 @@ Slice::JavaGenerator::writeMarshalUnmarshalCode(Output& out, ClassDefPtr def = cl->definition(); if (def && !def->isAbstract()) { - out << nl << v << " = (" << typeS << ')' << stream << ".readObject(" << typeS << ".__classIds[0], " + out << nl << v << " = (" << typeS << ')' << stream << ".readObject(" << typeS << ".ice_staticId(), " << typeS << "._factory);"; } else @@ -963,7 +963,7 @@ Slice::JavaGenerator::writeGenericMarshalUnmarshalCode(Output& out, if (def && !def->isAbstract()) { out << nl << v << " = (" << typeS << ')' << stream << ".readObject(" << name << ", " << typeS - << ".__classIds[0], " << typeS << "._factory);"; + << ".ice_staticId(), " << typeS << "._factory);"; } else { |