mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
remove logging
This commit is contained in:
parent
49fd99a45b
commit
9da01a1270
1 changed files with 0 additions and 4 deletions
|
|
@ -55,7 +55,6 @@ public final class TableUtil {
|
|||
|
||||
// set the column width from saved value or defaults
|
||||
int[] widths = getIntArrayFromString(PreferencesDialog.getCachedValue(widthPrefKey, null));
|
||||
LOGGER.info("loading stored widths: " + Arrays.toString(widths));
|
||||
int i = 0;
|
||||
for (int width : defaultColumnsWidth) {
|
||||
if (widths != null && widths.length > i) {
|
||||
|
|
@ -72,7 +71,6 @@ public final class TableUtil {
|
|||
|
||||
// set the column order
|
||||
int[] order = getIntArrayFromString(PreferencesDialog.getCachedValue(orderPrefKey, null));
|
||||
LOGGER.info("loading column order: " + Arrays.toString(order));
|
||||
if (order != null && order.length == table.getColumnCount()) {
|
||||
for (int j = 0; j < table.getColumnCount(); j++) {
|
||||
table.moveColumn(table.convertColumnIndexToView(order[j]), j);
|
||||
|
|
@ -100,8 +98,6 @@ public final class TableUtil {
|
|||
|
||||
PreferencesDialog.saveValue(widthPrefKey, columnWidthSettings.toString());
|
||||
PreferencesDialog.saveValue(orderPrefKey, columnOrderSettings.toString());
|
||||
LOGGER.info("saving column widths: " + columnWidthSettings.toString());
|
||||
LOGGER.info("saving column order: " + columnOrderSettings.toString());
|
||||
}
|
||||
|
||||
private static int[] getIntArrayFromString(String stringData) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue