Bug 18811 - Reference to JDK 1.4 API
Summary: Reference to JDK 1.4 API
Status: RESOLVED INVALID
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.0   Edit
Hardware: Other Linux
: P3 normal (vote)
Target Milestone: 2.0 F3   Edit
Assignee: Philipe Mulet CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-06-03 13:07 EDT by Jared Burns CLA
Modified: 2003-03-17 12:12 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.