From 5eb905fd2d859e4baf061f99e86cb254e06adfa1 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Tue, 21 Oct 2008 17:42:05 -0600 Subject: [PATCH] revert accidentally-committed change to Hello.java --- test/Hello.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/Hello.java b/test/Hello.java index 51c8f0fb47..d7d4f91935 100644 --- a/test/Hello.java +++ b/test/Hello.java @@ -1,11 +1,5 @@ public class Hello { public static void main(String[] args) { System.out.println("hello, world!"); - try { - Runtime.class.getMethod("dumpHeap", String.class) - .invoke(null, "/tmp/heap.bin"); - } catch (Exception e) { - e.printStackTrace(); - } } }