Skip to content

Commit 410cf82

Browse files
committed
organize imports
1 parent 7778718 commit 410cf82

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

swingx-core/src/main/java/org/jdesktop/swingx/plaf/basic/core/LazyActionMap.java

+10-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,15 @@
2020
package org.jdesktop.swingx.plaf.basic.core;
2121

2222

23-
import java.lang.reflect.*;
24-
import javax.swing.*;
25-
import javax.swing.plaf.*;
23+
import java.lang.reflect.InvocationTargetException;
24+
import java.lang.reflect.Method;
25+
26+
import javax.swing.Action;
27+
import javax.swing.ActionMap;
28+
import javax.swing.JComponent;
29+
import javax.swing.SwingUtilities;
30+
import javax.swing.UIManager;
31+
import javax.swing.plaf.ActionMapUIResource;
2632

2733
/**
2834
* An ActionMap that populates its contents as necessary. The
@@ -32,6 +38,7 @@
3238
* @version 1.6, 11/17/05
3339
* @author Scott Violet
3440
*/
41+
@SuppressWarnings("serial")
3542
public class LazyActionMap extends ActionMapUIResource {
3643
/**
3744
* Object to invoke <code>loadActionMap</code> on. This may be

0 commit comments

Comments
 (0)