1
0
Fork 0

Make inner class static

This commit is contained in:
hpi1 2019-02-24 19:19:06 +02:00
parent b2fcf2dc52
commit 7f43713587
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ public class FocusEvent extends ComponentEvent {
throw new Error("This class should not be included at run time");
}
public class /* enum */ Cause {
public static class /* enum */ Cause {
}
/* Needed when compiling for HaVi */

View File

@ -44,7 +44,7 @@ public class CausedFocusEvent extends FocusEvent {
throw new Error("This class should not be included at run time");
}
public class /* enum */ Cause {
public static class /* enum */ Cause {
};
public CausedFocusEvent(Component src, int id) {