Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Parker2014-10-08 00:09:23 +0000
committerMiles Parker2014-10-08 00:09:23 +0000
commitb2d26d89df88f2eed2fb8d9db0be861f7a1e15ed (patch)
tree469e0c54e563d8ced02aeecbaf337bffeeb7bd02
parent2d203e9cafeb81fba02978d7b8f1ab07b05d64f6 (diff)
downloadorg.eclipse.mylyn.context-b2d26d89df88f2eed2fb8d9db0be861f7a1e15ed.tar.gz
org.eclipse.mylyn.context-b2d26d89df88f2eed2fb8d9db0be861f7a1e15ed.tar.xz
org.eclipse.mylyn.context-b2d26d89df88f2eed2fb8d9db0be861f7a1e15ed.zip
437298: Remove static from BreakpointsStateUtilTest
* Test theory that static state might be implicated in failure of integration tests. Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=437298 Change-Id: I2768eeb966a80be5b58c030a16f40a7a982c325f Signed-off-by: Miles Parker <milesparker@gmail.com>
-rw-r--r--org.eclipse.mylyn.debug.tests/src/org/eclipse/mylyn/internal/debug/ui/BreakpointsStateUtilTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.debug.tests/src/org/eclipse/mylyn/internal/debug/ui/BreakpointsStateUtilTest.java b/org.eclipse.mylyn.debug.tests/src/org/eclipse/mylyn/internal/debug/ui/BreakpointsStateUtilTest.java
index 2ed6612f3..77998afcb 100644
--- a/org.eclipse.mylyn.debug.tests/src/org/eclipse/mylyn/internal/debug/ui/BreakpointsStateUtilTest.java
+++ b/org.eclipse.mylyn.debug.tests/src/org/eclipse/mylyn/internal/debug/ui/BreakpointsStateUtilTest.java
@@ -38,9 +38,9 @@ import org.junit.Test;
*/
public class BreakpointsStateUtilTest {
- private static final IPath pluginStateDir = Platform.getStateLocation(DebugUiPlugin.getDefault().getBundle());
+ private final IPath pluginStateDir = Platform.getStateLocation(DebugUiPlugin.getDefault().getBundle());
- private static final File pluginStateFile = pluginStateDir.append(BreakpointsStateUtil.STATE_FILE).toFile();
+ private final File pluginStateFile = pluginStateDir.append(BreakpointsStateUtil.STATE_FILE).toFile();
private final IBreakpointManager breakpointManager = DebugPlugin.getDefault().getBreakpointManager();

Back to the top