Remove non-ascii character from Javadoc

We often have java.io.FileNotFoundException: JAR entry
org/hibernate/annotations/NamedQueries.class not found errors when
building on these 2 classes and it's the only special thing in them so
let's hope it will fix this issue.
This commit is contained in:
Guillaume Smet 2018-11-28 11:00:48 +01:00
parent 39d9f84920
commit 2823e98cd9
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ package org.hibernate.annotations;
/** /**
* Enumeration extending javax.persistence flush modes. * Enumeration extending javax.persistence flush modes.
* *
* @author Carlos Gonz<EFBFBD>lez-Cadenas * @author Carlos Gonzalez-Cadenas
*/ */
public enum FlushModeType { public enum FlushModeType {
/** /**

View File

@ -17,7 +17,7 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
* definitions made available through {@link javax.persistence.NamedQueries}. * definitions made available through {@link javax.persistence.NamedQueries}.
* *
* @author Emmanuel Bernard * @author Emmanuel Bernard
* @author Carlos Gonz<EFBFBD>lez-Cadenas * @author Carlos Gonzalez-Cadenas
*/ */
@Target({TYPE, PACKAGE}) @Target({TYPE, PACKAGE})
@Retention(RUNTIME) @Retention(RUNTIME)