summaryrefslogtreecommitdiff
path: root/cpp/src/slice2java/Gen.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2002-01-15 21:56:55 +0000
committerMark Spruiell <mes@zeroc.com>2002-01-15 21:56:55 +0000
commitc990f97a8d71b5168a5b9a5453f3a2136be7efa5 (patch)
treef6b0da295ef62a16f1d73691b17be3796528d77a /cpp/src/slice2java/Gen.cpp
parentUUID (diff)
downloadice-c990f97a8d71b5168a5b9a5453f3a2136be7efa5.tar.bz2
ice-c990f97a8d71b5168a5b9a5453f3a2136be7efa5.tar.xz
ice-c990f97a8d71b5168a5b9a5453f3a2136be7efa5.zip
changing HashMap to Map for context param
Diffstat (limited to 'cpp/src/slice2java/Gen.cpp')
-rw-r--r--cpp/src/slice2java/Gen.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/slice2java/Gen.cpp b/cpp/src/slice2java/Gen.cpp
index 2e7e239b4c9..590d443a2f1 100644
--- a/cpp/src/slice2java/Gen.cpp
+++ b/cpp/src/slice2java/Gen.cpp
@@ -2021,7 +2021,7 @@ Slice::Gen::HelperVisitor::visitClassDefStart(const ClassDefPtr& p)
{
out << ", ";
}
- out << "java.util.HashMap __context)";
+ out << "java.util.Map __context)";
writeThrowsClause(scope, throws);
out << sb;
out << nl << "int __cnt = 0;";
@@ -2711,7 +2711,7 @@ Slice::Gen::ProxyVisitor::visitOperation(const OperationPtr& p)
{
out << ", ";
}
- out << "java.util.HashMap __context)";
+ out << "java.util.Map __context)";
writeThrowsClause(scope, throws);
out << ';';
}
@@ -2789,7 +2789,7 @@ Slice::Gen::DelegateVisitor::visitClassDefStart(const ClassDefPtr& p)
{
out << ", ";
}
- out << "java.util.HashMap __context)";
+ out << "java.util.Map __context)";
writeDelegateThrowsClause(scope, throws);
out << ';';
}
@@ -2862,7 +2862,7 @@ Slice::Gen::DelegateMVisitor::visitClassDefStart(const ClassDefPtr& p)
{
out << ", ";
}
- out << "java.util.HashMap __context)";
+ out << "java.util.Map __context)";
writeDelegateThrowsClause(scope, throws);
out << sb;
out << nl << "IceInternal.Outgoing __out = new "