You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ka...@apache.org on 2014/04/29 13:37:56 UTC

svn commit: r1590953 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ForeignKeysDeferrableTest.java

Author: kahatlen
Date: Tue Apr 29 11:37:56 2014
New Revision: 1590953

URL: http://svn.apache.org/r1590953
Log:
Javadoc fix: Replace Unicode hyphen with plain ASCII hyphen

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ForeignKeysDeferrableTest.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ForeignKeysDeferrableTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ForeignKeysDeferrableTest.java?rev=1590953&r1=1590952&r2=1590953&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ForeignKeysDeferrableTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ForeignKeysDeferrableTest.java Tue Apr 29 11:37:56 2014
@@ -51,7 +51,7 @@ import static org.apache.derbyTesting.ju
  * of the constraint (a {@code <match predicate>}) but does not defer the
  * referential actions of the referential constraint.
  * <p/>
- * NOTE 52 — For example, if a referential update action such as ON UPDATE
+ * NOTE 52 - For example, if a referential update action such as ON UPDATE
  * CASCADE is specified, then any UPDATE operation on the referenced table will
  * be cascaded to the referencing table as part of the UPDATE operation, even
  * if the referential constraint is deferred. Consequently, the referential
@@ -63,7 +63,7 @@ import static org.apache.derbyTesting.ju
  * constraint. Any such violations of the constraint will be detected when the
  * referential constraint is eventually checked, at or before a commit.
  * <p/>
- * NOTE 53 — Even if constraint checking is not deferred, ON UPDATE
+ * NOTE 53 - Even if constraint checking is not deferred, ON UPDATE
  * RESTRICT is a stricter condition than ON UPDATE NO ACTION. ON UPDATE
  * RESTRICT prohibits an update to a particular row if there are any
  * matching rows; ON UPDATE NO ACTION does not perform its constraint