public static synchronized void removeInstance(Connection conn) {
ProfilerEventHandler handler = (ProfilerEventHandler) CONNECTIONS_TO_SINKS.remove(conn);
if (handler != null) {
handler.destroy();
}
}
private ProfilerEventHandlerFactory(Connection conn) {
this.ownerConnection = conn;