bael-5851

This commit is contained in:
Ulisses Lima
2022-11-01 13:01:30 -03:00
parent eb633a5b19
commit 8e8496f196
7 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
package com.baeldung.factoryGeneric;
package com.baeldung.factorygeneric;
import java.util.Date;

View File

@@ -1,4 +1,4 @@
package com.baeldung.factoryGeneric;
package com.baeldung.factorygeneric;
import java.util.Date;

View File

@@ -1,4 +1,4 @@
package com.baeldung.factoryGeneric;
package com.baeldung.factorygeneric;
public interface Notifier<T> {

View File

@@ -1,4 +1,4 @@
package com.baeldung.factoryGeneric;
package com.baeldung.factorygeneric;
import java.util.Date;

View File

@@ -1,4 +1,4 @@
package com.baeldung.factoryGeneric;
package com.baeldung.factorygeneric;
import java.util.Date;

View File

@@ -1,4 +1,4 @@
package com.baeldung.factoryGeneric;
package com.baeldung.factorygeneric;
public class StringNotifier implements Notifier<String> {

View File

@@ -1,4 +1,4 @@
package com.baeldung.factoryGeneric;
package com.baeldung.factorygeneric;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;