Author: vyemialyanchyk
Date: 2009-04-10 10:08:21 -0400 (Fri, 10 Apr 2009)
New Revision: 14684
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/PendingNode.java
Log:
JBIDE-4139 - error fix with array values init
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/PendingNode.java
===================================================================
---
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/PendingNode.java 2009-04-10
14:06:26 UTC (rev 14683)
+++
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/views/navigator/PendingNode.java 2009-04-10
14:08:21 UTC (rev 14684)
@@ -50,9 +50,9 @@
public PendingNode(String type) {
text = new String[4];
text[0] = HibernateConsoleMessages.PendingNode_pending + type;
- text[1] = text + "."; //$NON-NLS-1$
- text[2] = text + ".."; //$NON-NLS-1$
- text[3] = text + "..."; //$NON-NLS-1$
+ text[1] = text[0] + "."; //$NON-NLS-1$
+ text[2] = text[0] + ".."; //$NON-NLS-1$
+ text[3] = text[0] + "..."; //$NON-NLS-1$
}
public String getText() {