summaryrefslogtreecommitdiffstats
path: root/libjava/classpath/gnu/CORBA/CDR/AbstractCdrInput.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/gnu/CORBA/CDR/AbstractCdrInput.java')
-rw-r--r--libjava/classpath/gnu/CORBA/CDR/AbstractCdrInput.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/libjava/classpath/gnu/CORBA/CDR/AbstractCdrInput.java b/libjava/classpath/gnu/CORBA/CDR/AbstractCdrInput.java
index 866ec2cc945..f582c31bd18 100644
--- a/libjava/classpath/gnu/CORBA/CDR/AbstractCdrInput.java
+++ b/libjava/classpath/gnu/CORBA/CDR/AbstractCdrInput.java
@@ -195,9 +195,9 @@ public abstract class AbstractCdrInput
* Set the Big Endian or Little Endian encoding. The stream reads Big Endian
* by default.
*
- * @param use_little_endian if true, the stream expect the multi-byte data in
- * the form "less significant byte first" (Little Endian). This is the
- * opposite to the java standard (Big Endian).
+ * @param use_big_endian if true, the stream expect the multi-byte data in
+ * the form "most significant byte first" (Big Endian). This is the
+ * java standard.
*/
public void setBigEndian(boolean use_big_endian)
{
@@ -208,7 +208,7 @@ public abstract class AbstractCdrInput
/**
* Get the used encoding.
*
- * @param true for Big Endian, false for Little Endian.
+ * @return true for Big Endian, false for Little Endian.
*/
public boolean isBigEndian()
{
@@ -654,7 +654,7 @@ public abstract class AbstractCdrInput
byte[] r = new byte[l];
int n = 0;
- reading: while (n < r.length)
+ while (n < r.length)
{
n += read(r, n, r.length - n);
}
OpenPOWER on IntegriCloud