Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipselink-dev] Fix for 210954: OX: Unreadable quotation char in javadocs causes IBM compilation error

Everyone,
    A change to javadocs was committed for the following character encoding issue in 2 files.
 
https://bugs.eclipse.org/bugs/show_bug.cgi?id=210954
 
 
Details:
-----------
The following 2 files contain non UTF-8 characters that were imported during a copy-paste of the following chars (" (open/close), '(open/close) and - ) from a word processor into .java javadocs.
These characters are causing a compile failure in RAD6 using the IBM compiler with the message "Character Encoding Problems - This file is unreadable using the "UTF-8" character encoding."
 
Example:
"manager" becomes â?omanagerâ??
 
eclipselink.core\src\org\eclipse\persistence\oxm\mappings\nullpolicy\NullPolicy.java
eclipselink.sdo.test\src\org\eclipse\persistence\testing\sdo\helper\copyhelper\SDOCopyHelperDeepCopyTest.java
 
Fix:
- Replace all the 3 characters above with their normal equivalents - no code changes.
 
Found by Tom, Reviewed by Blaise.
/michael

Back to the top