Polishing.
Fix "transaparent" to "transparent" in application-context.xml. Remove superfluous braces. Closes #3327
This commit is contained in:
@@ -623,7 +623,7 @@ public abstract class QueryUtils {
|
||||
} else {
|
||||
|
||||
String alias = QueryUtils.detectAlias(originalQuery);
|
||||
if (("*".equals(variable) && alias != null)) {
|
||||
if ("*".equals(variable) && alias != null) {
|
||||
replacement = alias;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
<!-- Necessary to get the entity manager injected into the factory bean -->
|
||||
<bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
|
||||
|
||||
<!-- Adds transaparent exception translation to the DAOs -->
|
||||
<!-- Adds transparent exception translation to the DAOs -->
|
||||
<bean class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor" />
|
||||
|
||||
<bean id="expressionEvaluationContextProvider" class="org.springframework.data.repository.query.ExtensionAwareQueryMethodEvaluationContextProvider" autowire="constructor" />
|
||||
|
||||
Reference in New Issue
Block a user