Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2006-04-18 18:41:59 +0000
committernitind2006-04-18 18:41:59 +0000
commita60c10d23e201e27110ff20d88f253eed8f186ef (patch)
tree6907cae48e6a9625e1f521a70e603880f94b684d /tests/org.eclipse.wst.html.core.tests/src/org/eclipse/wst/html/core/tests/utils/TestWriter.java
parentc595c0c255d8f8ed469583ba4dd5c0332740da9f (diff)
downloadwebtools.sourceediting.tests-a60c10d23e201e27110ff20d88f253eed8f186ef.tar.gz
webtools.sourceediting.tests-a60c10d23e201e27110ff20d88f253eed8f186ef.tar.xz
webtools.sourceediting.tests-a60c10d23e201e27110ff20d88f253eed8f186ef.zip
This commit was manufactured by cvs2svn to create tag 'v200604181942'.v200604181942
Diffstat (limited to 'tests/org.eclipse.wst.html.core.tests/src/org/eclipse/wst/html/core/tests/utils/TestWriter.java')
-rw-r--r--tests/org.eclipse.wst.html.core.tests/src/org/eclipse/wst/html/core/tests/utils/TestWriter.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/org.eclipse.wst.html.core.tests/src/org/eclipse/wst/html/core/tests/utils/TestWriter.java b/tests/org.eclipse.wst.html.core.tests/src/org/eclipse/wst/html/core/tests/utils/TestWriter.java
deleted file mode 100644
index 593f562ca..000000000
--- a/tests/org.eclipse.wst.html.core.tests/src/org/eclipse/wst/html/core/tests/utils/TestWriter.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.html.core.tests.utils;
-
-import java.io.StringWriter;
-
-public class TestWriter extends StringWriter {
- // we don't really want to use the system EOL, since
- // we want a common once across platforms, CVS, etc.
- public final static String commonEOL = "\r\n";
-
- //System.getProperty("line.separator");
-
- public void writeln(String line) {
- write(line);
- write(commonEOL);
- }
-} \ No newline at end of file

Back to the top