summaryrefslogtreecommitdiff
path: root/libjava/classpath/gnu/CORBA/CDR/AligningInput.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/gnu/CORBA/CDR/AligningInput.java')
-rw-r--r--libjava/classpath/gnu/CORBA/CDR/AligningInput.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/libjava/classpath/gnu/CORBA/CDR/AligningInput.java b/libjava/classpath/gnu/CORBA/CDR/AligningInput.java
index e2710628a52..8d438ab0610 100644
--- a/libjava/classpath/gnu/CORBA/CDR/AligningInput.java
+++ b/libjava/classpath/gnu/CORBA/CDR/AligningInput.java
@@ -107,17 +107,17 @@ public class AligningInput
{
return buf;
}
-
+
/**
* Get the current position in the buffer.
- *
+ *
* @return The position in the buffer, taking offset into consideration.
*/
public int getPosition()
{
return pos + offset;
- }
-
+ }
+
/**
* Jump to the given position, taking offset into consideration.
*/
@@ -127,5 +127,5 @@ public class AligningInput
throw new ArrayIndexOutOfBoundsException(position
+ " is out of valid ["+offset+".." + (count+offset) + "[ range");
pos = position - offset;
- }
+ }
}