Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2021-09-15 06:59:22 +0000
committerLars Vogel2021-09-20 15:41:35 +0000
commit8ef6e3f405c633eec5ba1aec403023d3914c9b79 (patch)
tree20ac0e1e71185e7e6d1b12dd98526ffeedfcbf26
parenta1906a17f5cfde6a98521ba10ca092f854703c33 (diff)
downloadeclipse.platform.debug-I20210921-1800.tar.gz
eclipse.platform.debug-I20210921-1800.tar.xz
eclipse.platform.debug-I20210921-1800.zip
Static inner class for SerialPerObjectRule in AbstractDebugCommand.javaI20210922-1800I20210921-1800I20210920-1800
Using JDT clean-up to convert to inner class. Change-Id: If37abce05ec6a3a4a4c75e23055d4adc0af3599b Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.debug/+/185446 Tested-by: Platform Bot <platform-bot@eclipse.org>
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/commands/AbstractDebugCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/AbstractDebugCommand.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/AbstractDebugCommand.java
index 0471431ca..a5bcf748d 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/AbstractDebugCommand.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/AbstractDebugCommand.java
@@ -172,7 +172,7 @@ public abstract class AbstractDebugCommand implements IDebugCommandHandler {
/**
* Scheduling rule to serialize commands on an object
*/
- private class SerialPerObjectRule implements ISchedulingRule {
+ private static class SerialPerObjectRule implements ISchedulingRule {
private Object fObject = null;

Back to the top