Author: cmueller
Date: Sat Nov 24 17:30:06 2012
New Revision: 1413211

URL: http://svn.apache.org/viewvc?rev=1413211&view=rev
Log:
added the missing java doc for the new public method in TestSupport

Modified:
    camel/trunk/camel-core/src/test/java/org/apache/camel/TestSupport.java

Modified: camel/trunk/camel-core/src/test/java/org/apache/camel/TestSupport.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/camel-core/src/test/java/org/apache/camel/TestSupport.java?rev=1413211&r1=1413210&r2=1413211&view=diff
==============================================================================
--- camel/trunk/camel-core/src/test/java/org/apache/camel/TestSupport.java 
(original)
+++ camel/trunk/camel-core/src/test/java/org/apache/camel/TestSupport.java Sat 
Nov 24 17:30:06 2012
@@ -506,6 +506,14 @@ public abstract class TestSupport extend
         return javaVendor.indexOf(vendor.toLowerCase(Locale.US)) > -1;
     }
 
+    /**
+     * Is this version the given Java version.
+     * <p/>
+     * Uses <tt>java.version</tt> from the system properties to determine the 
version.
+     *
+     * @param vendor such as IBM
+     * @return <tt>true</tt> if its that vendor.
+     */
     public static boolean isJavaVersion(String version) {
         String javaVersion = System.getProperty("java.version");
         return javaVersion.indexOf(version.toLowerCase(Locale.US)) > -1;


Reply via email to