1
0
Fork 0
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:
Marc Dumais 2016-08-05 07:42:36 -04:00 committed by Gerrit Code Review @ Eclipse.org
parent e747b21ae0
commit 35921b4bbd

View file

@ -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$