summaryrefslogtreecommitdiff
path: root/libjava/classpath/gnu/java/beans/editors/StringEditor.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/gnu/java/beans/editors/StringEditor.java')
-rw-r--r--libjava/classpath/gnu/java/beans/editors/StringEditor.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/libjava/classpath/gnu/java/beans/editors/StringEditor.java b/libjava/classpath/gnu/java/beans/editors/StringEditor.java
index 8242d5475a5..47fdce6597b 100644
--- a/libjava/classpath/gnu/java/beans/editors/StringEditor.java
+++ b/libjava/classpath/gnu/java/beans/editors/StringEditor.java
@@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
-
+
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
@@ -49,13 +49,13 @@ import java.beans.PropertyEditorSupport;
**/
public class StringEditor extends PropertyEditorSupport {
- /** setAsText just sets the value. **/
- public void setAsText(String val) throws IllegalArgumentException {
- setValue(val);
- }
-
- /** getAsText just returns the value. **/
- public String getAsText() {
- return (String)getValue();
- }
+ /** setAsText just sets the value. **/
+ public void setAsText(String val) throws IllegalArgumentException {
+ setValue(val);
+ }
+
+ /** getAsText just returns the value. **/
+ public String getAsText() {
+ return (String)getValue();
+ }
}