File headers and newlines
This commit is contained in:
parent
41577dcec4
commit
2175aea8ad
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
* Hibernate, Relational Persistence for Idiomatic Java
|
||||
*
|
||||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
*/
|
||||
package org.hibernate.dialect;
|
||||
|
||||
import org.hibernate.boot.Metadata;
|
||||
|
|
|
@ -327,4 +327,4 @@ public enum TemporalUnit {
|
|||
public String toString() {
|
||||
return super.toString().toLowerCase();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
* Hibernate, Relational Persistence for Idiomatic Java
|
||||
*
|
||||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
*/
|
||||
package org.hibernate.query.sqm.function;
|
||||
|
||||
import org.hibernate.metamodel.model.domain.AllowableFunctionReturnType;
|
||||
|
|
|
@ -564,7 +564,9 @@ public abstract class BaseSemanticQueryWalker implements SemanticQueryWalker<Obj
|
|||
return expression;
|
||||
}
|
||||
|
||||
public Object visitByUnit(SqmByUnit byUnit) { return byUnit; }
|
||||
public Object visitByUnit(SqmByUnit byUnit) {
|
||||
return byUnit;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object visitDurationUnit(SqmDurationUnit durationUnit) {
|
||||
|
|
|
@ -83,4 +83,4 @@ public class SqmCastTarget<T> extends AbstractSqmNode implements SqmTypedNode<T>
|
|||
public SqmExpressable getNodeType() {
|
||||
return type;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -201,4 +201,4 @@ public final class DateTimeUtils {
|
|||
return formatter;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue