From 3b3101d8b5ae4f08a16c0b7111da6cad41bbd282 Mon Sep 17 00:00:00 2001 From: mark Date: Tue, 15 Nov 2005 23:20:01 +0000 Subject: Imported GNU Classpath 0.19 + gcj-import-20051115. * sources.am: Regenerated. * Makefile.in: Likewise. * scripts/makemake.tcl: Use glob -nocomplain. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107049 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/classpath/gnu/CORBA/ServiceRequestAdapter.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libjava/classpath/gnu/CORBA/ServiceRequestAdapter.java') diff --git a/libjava/classpath/gnu/CORBA/ServiceRequestAdapter.java b/libjava/classpath/gnu/CORBA/ServiceRequestAdapter.java index 7f40fc84d2d..a6f7aa52b8d 100644 --- a/libjava/classpath/gnu/CORBA/ServiceRequestAdapter.java +++ b/libjava/classpath/gnu/CORBA/ServiceRequestAdapter.java @@ -38,7 +38,7 @@ exception statement from your version. */ package gnu.CORBA; -import gnu.CORBA.CDR.cdrBufOutput; +import gnu.CORBA.CDR.BufferedCdrOutput; import org.omg.CORBA.ARG_IN; import org.omg.CORBA.ARG_INOUT; @@ -67,7 +67,7 @@ public class ServiceRequestAdapter /** * A buffer for writing the response. */ - cdrBufOutput reply = new cdrBufOutput(); + BufferedCdrOutput reply = new BufferedCdrOutput(); /** * If set to true, an exception has been thrown during the invocation. @@ -105,7 +105,7 @@ public class ServiceRequestAdapter int OUT = ARG_OUT.value; // Write all arguments to the buffer output stream. - cdrBufOutput buffer = new cdrBufOutput(); + BufferedCdrOutput buffer = new BufferedCdrOutput(); gnuNVList args = new gnuNVList(); request.arguments(args); @@ -127,7 +127,7 @@ public class ServiceRequestAdapter { // Write the exception information gnuAny exc = new gnuAny(); - universalHolder uku = new universalHolder(h.reply); + GeneralHolder uku = new GeneralHolder(h.reply); exc.insert_Streamable(uku); request.set_exception(exc); } @@ -146,7 +146,7 @@ public class ServiceRequestAdapter { // Use the universal holder otherwise. gnuAny r = new gnuAny(); - r.insert_Streamable(new streamReadyHolder(in)); + r.insert_Streamable(new StreamHolder(in)); } // Unpack the arguments -- cgit v1.2.3