Added: incubator/sis/ip-review/rev/30421/HEADER.html URL: http://svn.apache.org/viewvc/incubator/sis/ip-review/rev/30421/HEADER.html?rev=1386467&view=auto ============================================================================== --- incubator/sis/ip-review/rev/30421/HEADER.html (added) +++ incubator/sis/ip-review/rev/30421/HEADER.html Mon Sep 17 04:18:09 2012 @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta charset="UTF-8"/> + <title>Revision 30421</title> + </head> + <body> + <div> + <h1>Revision 30421</h1> +<table> + <tr><td><b>Author:</b></td><td>danieler</td></tr> + <tr><td><b>Date:</b></td><td>2008-05-26</td></tr> + <tr><td><b>Message:</b></td><td>-fixed typo in Utilities.java--removed superseeded HashCodeUtil.java --removed superseeded EqualsUtil.java</td></tr> +</table> + </div> + </body> +</html>
Propchange: incubator/sis/ip-review/rev/30421/HEADER.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/sis/ip-review/rev/30421/HEADER.html ------------------------------------------------------------------------------ svn:mime-type = text/html Added: incubator/sis/ip-review/rev/30421/Utilities.xhtml URL: http://svn.apache.org/viewvc/incubator/sis/ip-review/rev/30421/Utilities.xhtml?rev=1386467&view=auto ============================================================================== --- incubator/sis/ip-review/rev/30421/Utilities.xhtml (added) +++ incubator/sis/ip-review/rev/30421/Utilities.xhtml Mon Sep 17 04:18:09 2012 @@ -0,0 +1,136 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta charset="UTF-8"/> + <title>Utilities changes for revisions 30420:30421</title> + <style type="text/css" media="all"> + @import url("../../reports.css"); + </style> + </head> + <body> + <div> + <h1>Utilities changes for revisions 30420:30421</h1> +<p>This is a typo fix: "<code>preferrably</code>" to "<code>preferably</code>". +In today IDE, such errors are flagged by the spell checker. So reverted the change, +saw that the spell checker underlined the words as errors, re-fixed the typo as +suggested by the spell checker.</p> +<p><b>Command line:</b></p> +<blockquote><code>svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r30420:30421 http://svn.osgeo.org/geotools/trunk/modules/library/metadata/src/main/java/org/geotools/util/Utilities.java</code></blockquote> +<table class="changes"> +<tr><th>Revision 30420</th><th>Revision 30421</th></tr> +<tr><td><pre> */ +package org.geotools.util; + +<span class="del">import java.util.Set;</span> +<span class="del">import java.util.Queue;</span> +import java.util.Arrays; +import java.util.Iterator; +<span class="del">import java.util.Collections;</span> +<span class="del">import java.util.AbstractQueue;</span> +<span class="del">import java.io.Serializable;</span> +<span class="del">import java.io.ObjectStreamException;</span> + + +/**</pre></td> +<td><pre> */ +package org.geotools.util; + +<span class="add">import java.io.ObjectStreamException;</span> +<span class="add">import java.io.Serializable;</span> +<span class="add">import java.util.AbstractQueue;</span> +import java.util.Arrays; +<span class="add">import java.util.Collections;</span> +import java.util.Iterator; +<span class="add">import java.util.Queue;</span> +<span class="add">import java.util.Set;</span> + + +/**</pre></td></tr> +<tr><td><pre> * + * @param value The value whose hash code to compute. + * @param seed The hash code value computed so far. If this method is invoked for the first +<span class="del"> * field, then any arbitrary value (preferrably different for each class) is okay.</span> + * @return An updated hash code value. + */ +public static int hash(char value, int seed) {</pre></td> +<td><pre> * + * @param value The value whose hash code to compute. + * @param seed The hash code value computed so far. If this method is invoked for the first +<span class="add"> * field, then any arbitrary value (preferably different for each class) is okay.</span> + * @return An updated hash code value. + */ +public static int hash(char value, int seed) {</pre></td></tr> +<tr><td><pre> * + * @param value The value whose hash code to compute. + * @param seed The hash code value computed so far. If this method is invoked for the first +<span class="del"> * field, then any arbitrary value (preferrably different for each class) is okay.</span> + * @return An updated hash code value. + */ +public static int hash(int value, int seed) {</pre></td> +<td><pre> * + * @param value The value whose hash code to compute. + * @param seed The hash code value computed so far. If this method is invoked for the first +<span class="add"> * field, then any arbitrary value (preferably different for each class) is okay.</span> + * @return An updated hash code value. + */ +public static int hash(int value, int seed) {</pre></td></tr> +<tr><td><pre> * + * @param value The value whose hash code to compute. + * @param seed The hash code value computed so far. If this method is invoked for the first +<span class="del"> * field, then any arbitrary value (preferrably different for each class) is okay.</span> + * @return An updated hash code value. + */ +public static int hash(long value, int seed) {</pre></td> +<td><pre> * + * @param value The value whose hash code to compute. + * @param seed The hash code value computed so far. If this method is invoked for the first +<span class="add"> * field, then any arbitrary value (preferably different for each class) is okay.</span> + * @return An updated hash code value. + */ +public static int hash(long value, int seed) {</pre></td></tr> +<tr><td><pre> * + * @param value The value whose hash code to compute. + * @param seed The hash code value computed so far. If this method is invoked for the first +<span class="del"> * field, then any arbitrary value (preferrably different for each class) is okay.</span> + * @return An updated hash code value. + */ +public static int hash(float value, int seed) {</pre></td> +<td><pre> * + * @param value The value whose hash code to compute. + * @param seed The hash code value computed so far. If this method is invoked for the first +<span class="add"> * field, then any arbitrary value (preferably different for each class) is okay.</span> + * @return An updated hash code value. + */ +public static int hash(float value, int seed) {</pre></td></tr> +<tr><td><pre> * + * @param value The value whose hash code to compute. + * @param seed The hash code value computed so far. If this method is invoked for the first +<span class="del"> * field, then any arbitrary value (preferrably different for each class) is okay.</span> + * @return An updated hash code value. + */ +public static int hash(double value, int seed) {</pre></td> +<td><pre> * + * @param value The value whose hash code to compute. + * @param seed The hash code value computed so far. If this method is invoked for the first +<span class="add"> * field, then any arbitrary value (preferably different for each class) is okay.</span> + * @return An updated hash code value. + */ +public static int hash(double value, int seed) {</pre></td></tr> +<tr><td><pre>* +* @param value The value whose hash code to compute, or {@code null}. +* @param seed The hash code value computed so far. If this method is invoked for the first +<span class="del">* field, then any arbitrary value (preferrably different for each class) is okay.</span> +* @return An updated hash code value. +* @throws AssertionError If assertions are enabled and the given value is an array. +*/</pre></td> +<td><pre>* +* @param value The value whose hash code to compute, or {@code null}. +* @param seed The hash code value computed so far. If this method is invoked for the first +<span class="add">* field, then any arbitrary value (preferably different for each class) is okay.</span> +* @return An updated hash code value. +* @throws AssertionError If assertions are enabled and the given value is an array. +*/</pre></td></tr> +</table> + </div> + </body> +</html>