You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2010/02/13 14:47:45 UTC

svn commit: r909814 - in /harmony/enhanced/classlib/trunk/modules: awt/src/main/java/common/org/apache/harmony/awt/geom/GeometryUtil.java security/src/main/java/common/org/apache/harmony/security/fortress/PolicyUtils.java

Author: hindessm
Date: Sat Feb 13 13:47:44 2010
New Revision: 909814

URL: http://svn.apache.org/viewvc?rev=909814&view=rev
Log:
Trivial javadoc fixes.

Modified:
    harmony/enhanced/classlib/trunk/modules/awt/src/main/java/common/org/apache/harmony/awt/geom/GeometryUtil.java
    harmony/enhanced/classlib/trunk/modules/security/src/main/java/common/org/apache/harmony/security/fortress/PolicyUtils.java

Modified: harmony/enhanced/classlib/trunk/modules/awt/src/main/java/common/org/apache/harmony/awt/geom/GeometryUtil.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/awt/src/main/java/common/org/apache/harmony/awt/geom/GeometryUtil.java?rev=909814&r1=909813&r2=909814&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/awt/src/main/java/common/org/apache/harmony/awt/geom/GeometryUtil.java (original)
+++ harmony/enhanced/classlib/trunk/modules/awt/src/main/java/common/org/apache/harmony/awt/geom/GeometryUtil.java Sat Feb 13 13:47:44 2010
@@ -53,7 +53,7 @@
      * The method checks up if line (x1, y1) - (x2, y2) and line (x3, y3) - (x4, y4)
      * intersect. If lines intersect then the result parameters are saved to point
      * array. The size of array point must be at least 2.
-     * @returns the method returns 1 if two lines intersect in the defined interval,  
+     * @return the method returns 1 if two lines intersect in the defined interval,  
      * 			otherwise 0
      */
     public static int intersectLines(double x1, double y1, double x2, double y2,
@@ -507,4 +507,4 @@
     	params[1] = s1;
     }
     
-}
\ No newline at end of file
+}

Modified: harmony/enhanced/classlib/trunk/modules/security/src/main/java/common/org/apache/harmony/security/fortress/PolicyUtils.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/security/src/main/java/common/org/apache/harmony/security/fortress/PolicyUtils.java?rev=909814&r1=909813&r2=909814&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/security/src/main/java/common/org/apache/harmony/security/fortress/PolicyUtils.java (original)
+++ harmony/enhanced/classlib/trunk/modules/security/src/main/java/common/org/apache/harmony/security/fortress/PolicyUtils.java Sat Feb 13 13:47:44 2010
@@ -322,7 +322,7 @@
      * @param path -
      *            file path.
      * @return - the resulting URI.
-     * @throw URISyntaxException
+     * @throws URISyntaxException
      */
     public static URI filePathToURI(String path) throws URISyntaxException {
         path = path.replace(File.separatorChar, '/');