comparison graal/com.oracle.graal.debug/src/com/oracle/graal/debug/DebugConfigScope.java @ 19510:1cde96b96673

Fixed code format issues.
author Roland Schatz <roland.schatz@oracle.com>
date Thu, 19 Feb 2015 16:15:56 +0100
parents 53b1edcf628f
children
comparison
equal deleted inserted replaced
19508:8c7536965c95 19510:1cde96b96673
25 import com.oracle.graal.debug.internal.*; 25 import com.oracle.graal.debug.internal.*;
26 26
27 /** 27 /**
28 * A utility for scoping a change to the current debug 28 * A utility for scoping a change to the current debug
29 * {@linkplain DebugScope#setConfig(DebugConfig) configuration}. For example: 29 * {@linkplain DebugScope#setConfig(DebugConfig) configuration}. For example:
30 * 30 *
31 * <pre> 31 * <pre>
32 * DebugConfig config = ...; 32 * DebugConfig config = ...;
33 * try (DebugConfigScope s = new DebugConfigScope(config)) { 33 * try (DebugConfigScope s = new DebugConfigScope(config)) {
34 * // ... 34 * // ...
35 * } 35 * }