some already implemented todo comments removed

This commit is contained in:
honfika@gmail.com
2015-08-14 12:41:11 +02:00
parent b67d21102b
commit 6a05d79ebe
4 changed files with 2 additions and 8 deletions

View File

@@ -66,7 +66,7 @@ public class DefineBitsLossless2Tag extends ImageTag implements AloneTag {
@Conditional(value = "bitmapFormat", options = {FORMAT_8BIT_COLORMAPPED})
public int bitmapColorTableSize;
public ByteArrayRange zlibBitmapData; //TODO: Parse ALPHACOLORMAPDATA,ALPHABITMAPDATA
public ByteArrayRange zlibBitmapData;
public static final int FORMAT_8BIT_COLORMAPPED = 3;

View File

@@ -66,7 +66,7 @@ public class DefineBitsLosslessTag extends ImageTag implements AloneTag {
@Conditional(value = "bitmapFormat", options = {FORMAT_8BIT_COLORMAPPED})
public int bitmapColorTableSize;
public ByteArrayRange zlibBitmapData; //TODO: Parse COLORMAPDATA,BITMAPDATA
public ByteArrayRange zlibBitmapData;
public static final int FORMAT_8BIT_COLORMAPPED = 3;

View File

@@ -121,11 +121,6 @@ public class MainFrameStatusPanel extends JPanel {
}
public void setErrorState(ErrorState errorState) {
if (errorNotificationButton == null) {
// todo: honfika
// why null?
return;
}
switch (errorState) {
case NO_ERROR:
currentIcon = View.getIcon("okay16");

View File

@@ -497,7 +497,6 @@ public class ActionPanel extends JPanel implements SearchListener<ActionSearchRe
hexOnlyButton.setToolTipText(AppStrings.translate("button.viewhex"));
hexOnlyButton.setMargin(new Insets(3, 3, 3, 3));
// todo: change icon
constantsViewButton = new JToggleButton(View.getIcon("constantpool16"));
constantsViewButton.addActionListener(this::constantsViewButtonActionPerformed);
constantsViewButton.setToolTipText(AppStrings.translate("button.viewConstants"));