- print extra descriptors as hex array

git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@244 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
This commit is contained in:
spandi
2007-02-19 19:22:46 +00:00
parent 0f627b66c6
commit 11f8d93094
3 changed files with 18 additions and 7 deletions

View File

@@ -402,10 +402,8 @@ public class UsbView extends JFrame {
}
void expandAll(JTree tree) {
int row = 0;
while (row < tree.getRowCount()) {
for (int row = 0; row < tree.getRowCount(); row++) {
tree.expandRow(row);
row++;
}
}
}