Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ static class ResourceChangedException extends RuntimeException {
public ResourceChangedException(IResource target) {
this.target = target;
}

@Override
public synchronized Throwable fillInStackTrace() {
// the stack trace is never used, see the class comment
return this;
}
}

/**
Expand Down
Loading