HHH-11204 - Fix typo for all "occured" error message to occurred
This commit is contained in:
parent
c0ddfbb3df
commit
6024520e08
|
@ -299,7 +299,7 @@ public interface CoreMessageLogger extends BasicLogger {
|
|||
void factoryUnboundFromName(String name);
|
||||
|
||||
@LogMessage(level = ERROR)
|
||||
@Message(value = "an assertion failure occured" + " (this may indicate a bug in Hibernate, but is more likely due"
|
||||
@Message(value = "an assertion failure occurred" + " (this may indicate a bug in Hibernate, but is more likely due"
|
||||
+ " to unsafe use of the session): %s", id = 99)
|
||||
void failed(Throwable throwable);
|
||||
|
||||
|
|
|
@ -455,9 +455,9 @@ public class SchemaExport {
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns a List of all Exceptions which occured during the export.
|
||||
* Returns a List of all Exceptions which occurred during the export.
|
||||
*
|
||||
* @return A List containing the Exceptions occured during the export
|
||||
* @return A List containing the Exceptions occurred during the export
|
||||
*/
|
||||
public List getExceptions() {
|
||||
return exceptions;
|
||||
|
|
|
@ -92,9 +92,9 @@ public class SchemaUpdate {
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns a List of all Exceptions which occured during the export.
|
||||
* Returns a List of all Exceptions which occurred during the export.
|
||||
*
|
||||
* @return A List containing the Exceptions occured during the export
|
||||
* @return A List containing the Exceptions occurred during the export
|
||||
*/
|
||||
public List getExceptions() {
|
||||
return exceptions;
|
||||
|
|
|
@ -404,7 +404,7 @@ public class PutFromLoadValidator {
|
|||
* released the lock. This allows the caller to be certain the putFromLoad will not execute afterQuery this method returns,
|
||||
* possibly caching stale data. </p>
|
||||
*
|
||||
* @return <code>true</code> if the invalidation was successful; <code>false</code> if a problem occured (which the
|
||||
* @return <code>true</code> if the invalidation was successful; <code>false</code> if a problem occurred (which the
|
||||
* caller should treat as an exception condition)
|
||||
*/
|
||||
public boolean beginInvalidatingRegion() {
|
||||
|
@ -539,7 +539,7 @@ public class PutFromLoadValidator {
|
|||
*
|
||||
* @param key key identifying data whose pending puts should be invalidated
|
||||
*
|
||||
* @return <code>true</code> if the invalidation was successful; <code>false</code> if a problem occured (which the
|
||||
* @return <code>true</code> if the invalidation was successful; <code>false</code> if a problem occurred (which the
|
||||
* caller should treat as an exception condition)
|
||||
*/
|
||||
public boolean beginInvalidatingKey(Object lockOwner, Object key) {
|
||||
|
|
|
@ -66,7 +66,7 @@ public interface ProxoolMessageLogger extends ConnectionPoolingLogger {
|
|||
*
|
||||
* @return The message
|
||||
*/
|
||||
@Message(value = "Exception occured when closing the Proxool pool", id = 30006)
|
||||
@Message(value = "Exception occurred when closing the Proxool pool", id = 30006)
|
||||
String exceptionClosingProxoolPool();
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue