Bug 18811

Summary: Reference to JDK 1.4 API
Product: [Eclipse Project] JDT Reporter: Jared Burns <jared_burns>
Component: CoreAssignee: Philipe Mulet <philippe_mulet>
Status: RESOLVED INVALID QA Contact:
Severity: normal    
Priority: P3    
Version: 2.0   
Target Milestone: 2.0 F3   
Hardware: Other   
OS: Linux   
Whiteboard:

Description Jared Burns CLA 2002-06-03 13:07:39 EDT
Build 20020602

There are references to StringBuffer.append(StringBuffer) in 
org.eclipse.jdt.internal.corext.refactoring.nls.NLSRefactoring. These 
references need to be replaced with 1.3 compliant method calls. 
StringBuffer.append(StringBuffer.toString()) will work.

The debugger also has a few references which we'll be eliminating (Bug 18786).
Comment 1 Jared Burns CLA 2002-06-03 14:08:40 EDT
Nevermind. :)

StringBuffer.append(Object) is valid in 1.3, so passing a StringBuffer in is 
OK. There's only a problem if you compile Eclipse against the 1.4 class 
libraries and then try to run on 1.3. The reason we saw this problem was 
essentially user error - we shouldn't have been compiling with 1.4.