more cleanup

This commit is contained in:
honfika@gmail.com
2015-07-05 21:54:30 +02:00
parent bf2c6cb822
commit dcb20d84f0
20 changed files with 23 additions and 35 deletions

View File

@@ -22,9 +22,9 @@ package com.jpexs.decompiler.flash.gui;
*/
public class ComboBoxItem<E> {
private String title;
private final String title;
private E value;
private final E value;
public ComboBoxItem(String title, E value) {
this.title = title;