|
|
@@ -2,9 +2,12 @@ package org.leumasjaffe.recipe;
|
|
|
|
|
|
import org.leumasjaffe.recipe.view.RecipeFrame;
|
|
|
|
|
|
-public class App {
|
|
|
+import lombok.experimental.UtilityClass;
|
|
|
|
|
|
- public static void main(String[] args) {
|
|
|
+@UtilityClass
|
|
|
+public class RecipeManager {
|
|
|
+
|
|
|
+ public void main(String[] args) {
|
|
|
new RecipeFrame().setVisible(true);
|
|
|
}
|
|
|
|