Skip to content

Commit 450c753

Browse files
committed
fixed getAsText javadoc (SPR-7890)
1 parent fa9a7b1 commit 450c753

File tree

1 file changed

+1
-5
lines changed
  • org.springframework.beans/src/main/java/org/springframework/beans/propertyeditors

1 file changed

+1
-5
lines changed

org.springframework.beans/src/main/java/org/springframework/beans/propertyeditors/CurrencyEditor.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2009 the original author or authors.
2+
* Copyright 2002-2011 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -34,10 +34,6 @@ public void setAsText(String text) throws IllegalArgumentException {
3434
setValue(Currency.getInstance(text));
3535
}
3636

37-
/**
38-
* This implementation returns <code>null</code> to indicate that
39-
* there is no appropriate text representation.
40-
*/
4137
@Override
4238
public String getAsText() {
4339
Currency value = (Currency) getValue();

0 commit comments

Comments
 (0)