Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2015-04-22 19:13:45 +0000
committerJoakim Erdfelt2015-04-22 19:13:45 +0000
commit4f3b4c5d3b3a1de91906c046c4877b5ef0f6b923 (patch)
tree12a5dc262d79f8672670001d834eff85e7d79796 /jetty-ant/src/main/java/org/eclipse/jetty/ant/types/SystemProperties.java
parentcffeea3ed6097d528b61db9378394bad7304a26d (diff)
downloadorg.eclipse.jetty.project-4f3b4c5d3b3a1de91906c046c4877b5ef0f6b923.tar.gz
org.eclipse.jetty.project-4f3b4c5d3b3a1de91906c046c4877b5ef0f6b923.tar.xz
org.eclipse.jetty.project-4f3b4c5d3b3a1de91906c046c4877b5ef0f6b923.zip
464727 - Update Javadoc for Java 8 DocLint
+ Fixing javadoc in jetty-ant
Diffstat (limited to 'jetty-ant/src/main/java/org/eclipse/jetty/ant/types/SystemProperties.java')
-rw-r--r--jetty-ant/src/main/java/org/eclipse/jetty/ant/types/SystemProperties.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/jetty-ant/src/main/java/org/eclipse/jetty/ant/types/SystemProperties.java b/jetty-ant/src/main/java/org/eclipse/jetty/ant/types/SystemProperties.java
index 72bed6497e..3e2b38bbdc 100644
--- a/jetty-ant/src/main/java/org/eclipse/jetty/ant/types/SystemProperties.java
+++ b/jetty-ant/src/main/java/org/eclipse/jetty/ant/types/SystemProperties.java
@@ -27,9 +27,8 @@ import org.eclipse.jetty.ant.utils.TaskLog;
/**
* SystemProperties
- *
- * Ant <systemProperties/> tag definition.
- *
+ * <p>
+ * Ant &lt;systemProperties/&gt; tag definition.
*/
public class SystemProperties
{
@@ -48,8 +47,8 @@ public class SystemProperties
/**
* Set a System.property with this value if it is not already set.
- *
- * @returns true if property has been set
+ * @param property the property to test
+ * @return true if property has been set
*/
public static boolean setIfNotSetAlready(Property property)
{

Back to the top