use of grails.util.BuildScope in project grails-core by grails.
the class DefaultGrailsPlugin method supportsCurrentScopeAndEnvironment.
public boolean supportsCurrentScopeAndEnvironment() {
BuildScope bs = BuildScope.getCurrent();
Environment e = Environment.getCurrent();
return supportsEnvironment(e) && supportsScope(bs);
}
Aggregations