Author: mturk Date: Sun Jun 21 05:51:17 2009 New Revision: 786943 URL: http://svn.apache.org/viewvc?rev=786943&view=rev Log: Tab police.
Modified: commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Structure32.java commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Structure64.java Modified: commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Structure32.java URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Structure32.java?rev=786943&r1=786942&r2=786943&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Structure32.java (original) +++ commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Structure32.java Sun Jun 21 05:51:17 2009 @@ -75,7 +75,7 @@ else if ((index & 0x03) != 0) throw new UnalignedParameterException(); return get0(POINTER.POINTER + index); - } + } public void poke(int index, Pointer v) throws IndexOutOfBoundsException, UnalignedParameterException, @@ -88,7 +88,7 @@ else if ((index & 0x03) != 0) throw new UnalignedParameterException(); poke2(POINTER.POINTER + index, ((Pointer32)v).POINTER); - } + } public int peek(int index) throws IndexOutOfBoundsException, NullPointerException Modified: commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Structure64.java URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Structure64.java?rev=786943&r1=786942&r2=786943&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Structure64.java (original) +++ commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Structure64.java Sun Jun 21 05:51:17 2009 @@ -75,7 +75,7 @@ else if ((index & 0x07) != 0) throw new UnalignedParameterException(); return get0(POINTER.POINTER + index); - } + } public void poke(int index, Pointer v) throws IndexOutOfBoundsException, UnalignedParameterException, @@ -88,7 +88,7 @@ else if ((index & 0x07) != 0) throw new UnalignedParameterException(); poke3(POINTER.POINTER + index, ((Pointer64)v).POINTER); - } + } public int peek(int index) throws IndexOutOfBoundsException, UnalignedParameterException