bael-5851

This commit is contained in:
Ulisses Lima 2022-11-01 13:01:30 -03:00
parent 1f1d49bcb1
commit 0e99a7f9cc
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.*;