Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2015-05-01 22:30:26 +0000
committerJoakim Erdfelt2015-05-01 22:30:26 +0000
commit96d1e1df6e4562f9030a620637a12dcded4e7a4f (patch)
tree4ae2e7ff275251798f1ff11fa95c61d0e0c89c7b
parent4cbce1a6276a590d9e46fb1622e630aed716d53d (diff)
downloadorg.eclipse.jetty.project-96d1e1df6e4562f9030a620637a12dcded4e7a4f.tar.gz
org.eclipse.jetty.project-96d1e1df6e4562f9030a620637a12dcded4e7a4f.tar.xz
org.eclipse.jetty.project-96d1e1df6e4562f9030a620637a12dcded4e7a4f.zip
Fixing javadoc
-rw-r--r--jetty-util/src/main/java/org/eclipse/jetty/util/PathWatcher.java10
1 files changed, 4 insertions, 6 deletions
diff --git a/jetty-util/src/main/java/org/eclipse/jetty/util/PathWatcher.java b/jetty-util/src/main/java/org/eclipse/jetty/util/PathWatcher.java
index 5a48684b27..cca060cafc 100644
--- a/jetty-util/src/main/java/org/eclipse/jetty/util/PathWatcher.java
+++ b/jetty-util/src/main/java/org/eclipse/jetty/util/PathWatcher.java
@@ -121,16 +121,15 @@ public class PathWatcher extends AbstractLifeCycle implements Runnable
/**
* Add a <code>glob:</code> syntax pattern exclude reference in a directory relative, os neutral, pattern.
- * <p>
*
* <pre>
* On Linux:
* Config config = new Config(Path("/home/user/example"));
- * config.addExcludeGlobRelative("*.war") => "glob:/home/user/example/*.war"
+ * config.addExcludeGlobRelative("*.war") =&gt; "glob:/home/user/example/*.war"
*
* On Windows
* Config config = new Config(Path("D:/code/examples"));
- * config.addExcludeGlobRelative("*.war") => "glob:D:\\code\\examples\\*.war"
+ * config.addExcludeGlobRelative("*.war") =&gt; "glob:D:\\code\\examples\\*.war"
*
* </pre>
*
@@ -204,16 +203,15 @@ public class PathWatcher extends AbstractLifeCycle implements Runnable
/**
* Add a <code>glob:</code> syntax pattern reference in a directory relative, os neutral, pattern.
- * <p>
*
* <pre>
* On Linux:
* Config config = new Config(Path("/home/user/example"));
- * config.addIncludeGlobRelative("*.war") => "glob:/home/user/example/*.war"
+ * config.addIncludeGlobRelative("*.war") =&gt; "glob:/home/user/example/*.war"
*
* On Windows
* Config config = new Config(Path("D:/code/examples"));
- * config.addIncludeGlobRelative("*.war") => "glob:D:\\code\\examples\\*.war"
+ * config.addIncludeGlobRelative("*.war") =&gt; "glob:D:\\code\\examples\\*.war"
*
* </pre>
*

Back to the top