File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
jmx/src/com/sun/tools/visualvm/jmx/impl
jvmstat/src/com/sun/tools/visualvm/jvmstat
tools/src/com/sun/tools/visualvm/tools/jmx Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -384,7 +384,7 @@ private JmxSupport getJmxSupport() {
384
384
private class ApplicationRemovedListener implements DataRemovedListener <Application > {
385
385
386
386
public void dataRemoved (Application application ) {
387
- RequestProcessor . getDefault ().post (new Runnable () {
387
+ new RequestProcessor ().post (new Runnable () {
388
388
public void run () {
389
389
client .markAsDead ();
390
390
removedListener = null ;
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ public void disconnected(VmEvent event) {
218
218
}
219
219
220
220
public void dataRemoved (Application dataSource ) {
221
- RequestProcessor . getDefault ().post (new Runnable () {
221
+ new RequestProcessor ().post (new Runnable () {
222
222
public void run () {
223
223
disableListeners ();
224
224
monitoredVm .detach ();
Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ public void actionPerformed(ActionEvent e) {
215
215
void intervalElapsed () {
216
216
if (flushRunning ) return ;
217
217
flushRunning = true ;
218
- RequestProcessor . getDefault ().post (new Runnable () {
218
+ new RequestProcessor ().post (new Runnable () {
219
219
public void run () {
220
220
flush ();
221
221
connectionPinger ();
You can’t perform that action at this time.
0 commit comments