--- old/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/LinuxAddress.java 2013-06-25 10:52:32.892786002 +0100 +++ new/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/LinuxAddress.java 2013-06-25 10:52:32.792786002 +0100 @@ -26,11 +26,11 @@ import sun.jvm.hotspot.debugger.*; -class LinuxAddress implements Address { +public class LinuxAddress implements Address { protected LinuxDebugger debugger; protected long addr; - LinuxAddress(LinuxDebugger debugger, long addr) { + public LinuxAddress(LinuxDebugger debugger, long addr) { this.debugger = debugger; this.addr = addr; }