java.lang.AssertionError while running swing outline view using Java web start -


i have implemented outline view jtable tree view mentioned here , here. implementation running in eclipse workspace when ran application using java web start. faced following issue.

 java.lang.assertionerror: resetting of permutation in awt queue!     @ org.netbeans.swing.etable.etable.resetpermutation(etable.java:1380)     @ org.netbeans.swing.etable.etable.tablechanged(etable.java:1268)     @ org.netbeans.swing.outline.outline.tablechanged(outline.java:943)     @ javax.swing.jtable.setmodel(jtable.java:3698)     @ org.netbeans.swing.etable.etable.setmodel(etable.java:861)     @ org.netbeans.swing.outline.outline.setmodel(outline.java:636)     @ javax.swing.jtable.<init>(jtable.java:644)     @ javax.swing.jtable.<init>(jtable.java:572)     @ org.netbeans.swing.etable.etable.<init>(etable.java:287)     @ org.netbeans.swing.outline.outline.<init>(outline.java:226) 

could please advice me reason behind it.

the issue has been resolved disabling assertion java web start. modification in jnlp files

added java-vm-args="-da" in jnlp file

<java  href="http://java.sun.com/products/autodl/j2se" version="1.7+"  java-vm-args="-da" initial-heap-size="128m" max-heap-size="512m" /> 

thanks @vishal_aim hints


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -