Skip to content

Commit

Permalink
re-add "implements Cloneable"
Browse files Browse the repository at this point in the history
it was removed by commit bcdf45e
grails@bcdf45e#L85L52
  • Loading branch information
lhotari committed Apr 4, 2013
1 parent 4a7b201 commit 6c9be90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -49,7 +49,7 @@
* @since Oct 24, 2005
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
public class GrailsParameterMap extends TypeConvertingMap {
public class GrailsParameterMap extends TypeConvertingMap implements Cloneable {

private static final Log LOG = LogFactory.getLog(GrailsParameterMap.class);
private static final Map<String, String> CACHED_DATE_FORMATS = new ConcurrentHashMap<String, String>();
Expand Down
Expand Up @@ -28,7 +28,7 @@
* @since 1.2
*/
@SuppressWarnings({ "unchecked", "rawtypes" })
public class GroovyPageAttributes extends TypeConvertingMap {
public class GroovyPageAttributes extends TypeConvertingMap implements Cloneable {
boolean gspTagSyntaxCall = true;

public GroovyPageAttributes() {
Expand Down

0 comments on commit 6c9be90

Please sign in to comment.