mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Bug 499227 - Missing REVEAL and FORCE flags in VMDelta#appendDetail()
Change-Id: I51148b3267b28561ea27c6dd4bbecaf8afe92d8f
This commit is contained in:
parent
e747b21ae0
commit
35921b4bbd
1 changed files with 6 additions and 0 deletions
|
@ -325,6 +325,12 @@ public class VMDelta extends ModelDelta {
|
|||
if ((flags & IModelDelta.UNINSTALL) > 0) {
|
||||
buf.append("UNINSTALL | "); //$NON-NLS-1$
|
||||
}
|
||||
if ((flags & IModelDelta.REVEAL) > 0) {
|
||||
buf.append("REVEAL | "); //$NON-NLS-1$
|
||||
}
|
||||
if ((flags & IModelDelta.FORCE) > 0) {
|
||||
buf.append("FORCE | "); //$NON-NLS-1$
|
||||
}
|
||||
}
|
||||
buf.append('\n');
|
||||
buf.append(indent).append("\t\tIndex: "); //$NON-NLS-1$
|
||||
|
|
Loading…
Add table
Reference in a new issue