View | Details | Raw Unified | Return to bug 296631 | Differences between
and this patch

Collapse All | Expand All

(-)a/ui/org.eclipse.ui.trace/src/org/eclipse/ui/trace/internal/datamodel/ModifiedDebugOptions.java (-6 / +4 lines)
Lines 64-73 Link Here
64
			if (isBeingRemoved) {
64
			if (isBeingRemoved) {
65
				// remove it from the list of debug options to remove
65
				// remove it from the list of debug options to remove
66
				this.debugOptionsToRemove.remove(option);
66
				this.debugOptionsToRemove.remove(option);
67
			} else {
68
				// add it to the list of debug options to add
69
				this.debugOptionsToAdd.add(option);
70
			}
67
			}
68
			// add it to the list of debug options to add
69
			this.debugOptionsToAdd.add(option);
71
		}
70
		}
72
	}
71
	}
73
72
Lines 84-93 Link Here
84
			if (isBeingAdded) {
83
			if (isBeingAdded) {
85
				// remove it from the list of debug options to add
84
				// remove it from the list of debug options to add
86
				this.debugOptionsToAdd.remove(option);
85
				this.debugOptionsToAdd.remove(option);
87
			} else {
88
				// add it to the list of debug options to remove
89
				this.debugOptionsToRemove.add(option);
90
			}
86
			}
87
			// add it to the list of debug options to remove
88
			this.debugOptionsToRemove.add(option);
91
		}
89
		}
92
	}
90
	}
93
91

Return to bug 296631