- delete trace file, if generated file is deleted (https://bugs.eclipse.org/bugs/show_bug.cgi?id=376376)

- trace files start with a '.' to make them hidden by default (https://bugs.eclipse.org/bugs/show_bug.cgi?id=376377) 
- fixed generated source view, to work with multiple generated files.
This commit is contained in:
Sven Efftinge 2012-04-12 08:09:56 +02:00
parent e13a41363e
commit 86bbb847ab

View file

@ -307,6 +307,9 @@ public abstract class AbstractTraceRegion {
@Nullable
public ILocationData getMergedAssociatedLocation() {
List<ILocationData> allData = getAssociatedLocations();
if (allData.isEmpty()) {
return null;
}
if (allData.size() == 1) {
return allData.get(0);
}