Rename package

org.baeldung -> com.baeldung
This commit is contained in:
David Morley 2016-01-07 20:28:55 -06:00
parent 9438588be8
commit e2d30f5683
15 changed files with 19 additions and 19 deletions

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import java.util.function.Consumer; import java.util.function.Consumer;
import java.util.function.Function; import java.util.function.Function;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import java.util.function.Consumer; import java.util.function.Consumer;
import java.util.function.Function; import java.util.function.Function;

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
@FunctionalInterface @FunctionalInterface
public interface Bar { public interface Bar {

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
@FunctionalInterface @FunctionalInterface
public interface Baz { public interface Baz {

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
@FunctionalInterface @FunctionalInterface
public interface Foo { public interface Foo {

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
@FunctionalInterface @FunctionalInterface
public interface FooExtended extends Baz, Bar { public interface FooExtended extends Baz, Bar {

View File

@ -1,4 +1,4 @@
package org.baeldung; package com.baeldung;
import java.util.function.Function; import java.util.function.Function;

View File

@ -1,4 +1,4 @@
package org.baeldung.java8; package com.baeldung.java8;
import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.hasSize;
import static org.junit.Assert.assertThat; import static org.junit.Assert.assertThat;

View File

@ -1,8 +1,8 @@
package org.baeldung.java8; package com.baeldung.java8;
import org.baeldung.Foo; import com.baeldung.Foo;
import org.baeldung.FooExtended; import com.baeldung.FooExtended;
import org.baeldung.UseFoo; import com.baeldung.UseFoo;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;

View File

@ -1,4 +1,4 @@
package org.baeldung.java8; package com.baeldung.java8;
import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.equalTo;
@ -6,7 +6,7 @@ import java.util.Collections;
import java.util.Comparator; import java.util.Comparator;
import java.util.List; import java.util.List;
import org.baeldung.java8.entity.Human; import com.baeldung.java8.entity.Human;
import org.junit.Assert; import org.junit.Assert;
import org.junit.Test; import org.junit.Test;

View File

@ -1,4 +1,4 @@
package org.baeldung.java8; package com.baeldung.java8;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;

View File

@ -1,4 +1,4 @@
package org.baeldung.java8; package com.baeldung.java8;
import java.io.PrintWriter; import java.io.PrintWriter;
import java.io.StringWriter; import java.io.StringWriter;

View File

@ -1,4 +1,4 @@
package org.baeldung.java8.base64; package com.baeldung.java8.base64;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals; import static org.junit.Assert.assertNotEquals;

View File

@ -1,4 +1,4 @@
package org.baeldung.java8.base64; package com.baeldung.java8.base64;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals; import static org.junit.Assert.assertNotEquals;

View File

@ -1,4 +1,4 @@
package org.baeldung.java8.entity; package com.baeldung.java8.entity;
public class Human { public class Human {
private String name; private String name;