You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/07/03 16:54:31 UTC

svn commit: r790934 - in /commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime: Pointer.java Sizeof.java

Author: mturk
Date: Fri Jul  3 14:54:31 2009
New Revision: 790934

URL: http://svn.apache.org/viewvc?rev=790934&view=rev
Log:
Use correct doc link

Modified:
    commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Pointer.java
    commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Sizeof.java

Modified: commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Pointer.java
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Pointer.java?rev=790934&r1=790933&r2=790934&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Pointer.java (original)
+++ commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Pointer.java Fri Jul  3 14:54:31 2009
@@ -47,7 +47,7 @@
      * Size of the memory area this pointer consumes.
      * <p>
      * If the {@code this} Pointer does not have a length
-     * the returned size if Pointer {@link #SIZEOF}.
+     * the returned size is {@link Sizeof#POINTER Sizeof.POINTER}.
      *</p>
      *
      * @return Internal pointer size.

Modified: commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Sizeof.java
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Sizeof.java?rev=790934&r1=790933&r2=790934&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Sizeof.java (original)
+++ commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Sizeof.java Fri Jul  3 14:54:31 2009
@@ -35,7 +35,7 @@
     static {
 
         INT     = Platform.SIZEOF_INT;
-        LONG     = Platform.SIZEOF_LONG;
+        LONG    = Platform.SIZEOF_LONG;
         SIZE_T  = Platform.SIZEOF_SIZE_T;
         POINTER = Platform.SIZEOF_POINTER;
         WCHAR   = Platform.SIZEOF_WCHAR;