Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-18 21:31:20 +0000
committerAlexander Kurtakov2019-02-18 21:31:20 +0000
commit814d1fa9f3376b4e00b6a7772a8d8d37bbf49835 (patch)
treed4600f53edccc46a3a0dc465c2ff12d5994be68f /org.eclipse.ui.console
parent7ae9987f515d49bf483d3b0a5ddf699626842ad1 (diff)
downloadeclipse.platform.debug-I20190224-1800.tar.gz
eclipse.platform.debug-I20190224-1800.tar.xz
eclipse.platform.debug-I20190224-1800.zip
After fixing majority of Xdoclint:html issues there are warnings even with Xdoclint:none. Change-Id: I8d4ec9e2b5bfa137526e8bee0d00a3c9fef0eddb Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.ui.console')
-rw-r--r--org.eclipse.ui.console/src/org/eclipse/ui/console/IOConsole.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.ui.console/src/org/eclipse/ui/console/IOConsole.java b/org.eclipse.ui.console/src/org/eclipse/ui/console/IOConsole.java
index 39e720ac3..f409fa327 100644
--- a/org.eclipse.ui.console/src/org/eclipse/ui/console/IOConsole.java
+++ b/org.eclipse.ui.console/src/org/eclipse/ui/console/IOConsole.java
@@ -227,16 +227,16 @@ public class IOConsole extends TextConsole {
}
/**
- * Sets the text buffer size for this console. The high water mark indicates
- * the maximum number of characters stored in the buffer. The low water mark
+ * Sets the text buffer size for this console. The high water mark indicates the
+ * maximum number of characters stored in the buffer. The low water mark
* indicates the number of characters remaining in the buffer when the high
* water mark is exceeded.
*
- * @param low the number of characters remaining in the buffer when the high
- * water mark is exceeded (if -1 the console does not limit output)
- * @param high the maximum number of characters this console will cache in
- * its text buffer (if -1 the console does not limit output)
- * @exception IllegalArgumentException if low >= high & low != -1
+ * @param low the number of characters remaining in the buffer when the high
+ * water mark is exceeded (if -1 the console does not limit output)
+ * @param high the maximum number of characters this console will cache in its
+ * text buffer (if -1 the console does not limit output)
+ * @exception IllegalArgumentException if low &gt;= high &amp; low != -1
*/
public void setWaterMarks(int low, int high) {
if (low >= 0) {

Back to the top