Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

in grails 2.3 a typo was fixed which subsequently breaks this plugin #10

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions application.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Grails Metadata file
#Tue May 28 09:46:32 CEST 2013
app.grails.version=2.2.3
#Mon Dec 30 00:36:15 CST 2013
app.grails.version=2.3.3
app.name=marshallers

app.servlet.version=2.5
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import groovy.lang.Closure;

import org.codehaus.groovy.grails.web.converters.Converter;

import org.codehaus.groovy.grails.web.converters.marshaller.ClosureOjectMarshaller;
import org.codehaus.groovy.grails.web.converters.marshaller.ClosureObjectMarshaller;

import groovy.lang.Closure;
import org.codehaus.groovy.grails.commons.GrailsClassUtils as GCU
Expand Down Expand Up @@ -117,7 +117,7 @@ class ConfigurationBuilder {
}
}

class NameAwareClosureObjectMarshaller<T extends Converter> extends ClosureOjectMarshaller<T> implements NameAwareMarshaller {
class NameAwareClosureObjectMarshaller<T extends Converter> extends ClosureObjectMarshaller<T> implements NameAwareMarshaller {

def elementName

Expand Down