1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Implement toString() for debugging, related to bug 294812

This commit is contained in:
Anton Leherbauer 2009-11-11 10:46:10 +00:00
parent 9812bce837
commit 3d72fc1408

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2002, 2006 QNX Software Systems and others.
* Copyright (c) 2002, 2009 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -293,4 +293,8 @@ public class CEditorTextHoverDescriptor implements Comparable<CEditorTextHoverDe
return fElement;
}
@Override
public String toString() {
return getId();
}
}