Rename package

org.baeldung -> com.baeldung
This commit is contained in:
David Morley
2016-01-07 20:28:55 -06:00
parent b87f6d3098
commit a109672172
15 changed files with 19 additions and 19 deletions
@@ -1,4 +1,4 @@
package org.baeldung;
package com.baeldung;
import java.util.function.Consumer;
import java.util.function.Function;
@@ -1,4 +1,4 @@
package org.baeldung;
package com.baeldung;
import java.util.function.Consumer;
import java.util.function.Function;
@@ -1,4 +1,4 @@
package org.baeldung;
package com.baeldung;
@FunctionalInterface
public interface Bar {
@@ -1,4 +1,4 @@
package org.baeldung;
package com.baeldung;
@FunctionalInterface
public interface Baz {
@@ -1,4 +1,4 @@
package org.baeldung;
package com.baeldung;
@FunctionalInterface
public interface Foo {
@@ -1,4 +1,4 @@
package org.baeldung;
package com.baeldung;
@FunctionalInterface
public interface FooExtended extends Baz, Bar {
@@ -1,4 +1,4 @@
package org.baeldung;
package com.baeldung;
import java.util.function.Function;