From 450c75337fe27493bdc79843fd76081ba9894bfe Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Mon, 28 Nov 2011 21:14:40 +0000 Subject: [PATCH] fixed getAsText javadoc (SPR-7890) --- .../beans/propertyeditors/CurrencyEditor.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/org.springframework.beans/src/main/java/org/springframework/beans/propertyeditors/CurrencyEditor.java b/org.springframework.beans/src/main/java/org/springframework/beans/propertyeditors/CurrencyEditor.java index 5c5c0ecad1..004d8ed283 100644 --- a/org.springframework.beans/src/main/java/org/springframework/beans/propertyeditors/CurrencyEditor.java +++ b/org.springframework.beans/src/main/java/org/springframework/beans/propertyeditors/CurrencyEditor.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009 the original author or authors. + * Copyright 2002-2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -34,10 +34,6 @@ public class CurrencyEditor extends PropertyEditorSupport { setValue(Currency.getInstance(text)); } - /** - * This implementation returns null to indicate that - * there is no appropriate text representation. - */ @Override public String getAsText() { Currency value = (Currency) getValue();