Community
Participate
Working Groups
Version: 3.2.0 Build id: I20060119-0800 It should be possible to resolve multible selected markers in Problems View with multi quick fix if a marker resultion for all the selected markers exists. see also Bug 118435
*** Bug 138612 has been marked as a duplicate of this bug. ***
Test example of identical problems but not found under "find similar problems". (The declared exception IOException is not actually thrown by the method sameproblem1() ...) import java.io.IOException; public class EclipseIdenticalBugs { public void sameproblem1() throws IOException {} public void sameproblem2() throws IOException {} }
In 3.2RC6. Does not find these two identical problems (unnecessary simicolons). public class UnnecessarySemicolon { public void semi1() {/**/}; public void semi2() {/**/}; }
Peter do you mean that using the Quick Fix dialog you do not find the second one using "Find Matching Problems". If so please log a bug to JDT - this one is about multi select in the problems view
Hmm, yes. Thats is what I said in bug 138612 (marked as doublicate in comment #1) and gave an example of it in comment 2 (and now also in 3).
For performance reasons we can't do this with JDT currently so I don't think it worth persuing.
So let me get this straight: this is not being implemented because it's going to take too long for eclipse to compute? So it's better to have me spend almost an hour going through 300+ "declared exeception not thrown" instead of letting eclipse do it overnight? Can't the code do it faster that a human? What's going on here?