Kaynağa Gözat

Rename App to RecipeManager

Sam Jaffe 5 yıl önce
ebeveyn
işleme
4683c56c81

+ 5 - 2
src/main/lombok/org/leumasjaffe/recipe/App.java

@@ -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);
 	}