Author: davsclaus
Date: Mon Jun 23 21:49:56 2008
New Revision: 671022
URL: http://svn.apache.org/viewvc?rev=671022&view=rev
Log:
Polished javadoc
Modified:
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/util/SystemHelper.java
Modified:
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/util/SystemHelper.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/util/SystemHelper.java?rev=671022&r1=671021&r2=671022&view=diff
==============================================================================
---
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/util/SystemHelper.java
(original)
+++
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/util/SystemHelper.java
Mon Jun 23 21:49:56 2008
@@ -31,8 +31,6 @@
/**
* Looks up the given system property name returning null if any
exceptions occur
- * @param name
- * @return
*/
public static String getSystemProperty(String name) {
try {
@@ -44,11 +42,11 @@
}
/**
- * Looks up the given system property value and returns true or false if
it is not enabled
+ * Looks up the given system property boolean value. Returns false if the
system property doesn't exist.
*/
public static boolean isSystemProperty(String name) {
String text = getSystemProperty(name);
return ObjectConverter.toBool(text);
-
}
+
}