Bug 22637

Summary: AST: Typos in Javadoc Assignment.Operator
Product: [Eclipse Project] JDT Reporter: Martin Aeschlimann <martinae>
Component: CoreAssignee: Olivier Thomann <Olivier_Thomann>
Status: VERIFIED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 2.0   
Target Milestone: 2.1 M1   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description Martin Aeschlimann CLA 2002-08-21 10:18:28 EDT
20020820
The javadoc comments contain a '=' too much.
/** &gt;&gt;== operator. */ results in >>== should be >>=


		public static final Operator REMAINDER_ASSIGN = new Operator("%
=");//$NON-NLS-1$
		/** &lt;&lt;== operator. */
		public static final Operator LEFT_SHIFT_ASSIGN =
			new Operator("<<=");//$NON-NLS-1$
		/** &gt;&gt;== operator. */
		public static final Operator RIGHT_SHIFT_SIGNED_ASSIGN =
			new Operator(">>=");//$NON-NLS-1$
		/** &gt;&gt;&gt;== operator. */
		public static final Operator RIGHT_SHIFT_UNSIGNED_ASSIGN =
			new Operator(">>>=");//$NON-NLS-1$
Comment 1 Olivier Thomann CLA 2002-08-28 12:44:13 EDT
Fixed and released.
Comment 2 David Audel CLA 2002-09-19 10:02:49 EDT
Verified.