Skip to content

Commit

Permalink
Packages structure refactoreed
Browse files Browse the repository at this point in the history
  • Loading branch information
marat-gainullin committed Jan 16, 2019
1 parent 5cb5ec8 commit af41d44
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.pgasync.impl;
package com.github.pgasync;

import com.github.pgasync.PgRow;
import com.pgasync.Row;
import org.junit.*;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package com.pgasync.impl;
package com.github.pgasync;

import com.pgasync.ConnectionPool;
import com.pgasync.ResultSet;
import com.pgasync.SqlException;
import org.junit.ClassRule;
import org.junit.Test;

import static com.pgasync.impl.DatabaseRule.createPoolBuilder;
import static com.github.pgasync.DatabaseRule.createPoolBuilder;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* limitations under the License.
*/

package com.pgasync.impl;
package com.github.pgasync;

import com.pgasync.ResultSet;
import org.junit.After;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.pgasync.impl;
package com.github.pgasync;

import com.github.pgasync.Oid;
import com.pgasync.Converter;
import org.junit.AfterClass;
import org.junit.BeforeClass;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.pgasync.impl;
package com.github.pgasync;

import static java.lang.System.getenv;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.pgasync.impl;
package com.github.pgasync;

import com.pgasync.ConnectionPool;
import com.pgasync.Listening;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@
* limitations under the License.
*/

package com.pgasync.impl;
package com.github.pgasync;

import com.github.pgasync.PgRow;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.ClassRule;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* limitations under the License.
*/

package com.pgasync.impl;
package com.github.pgasync;

import com.pgasync.Connection;
import com.pgasync.ConnectionPool;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* limitations under the License.
*/

package com.pgasync.impl;
package com.github.pgasync;

import com.pgasync.Connection;
import com.pgasync.ConnectionPool;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* limitations under the License.
*/

package com.pgasync.impl;
package com.github.pgasync;

import com.pgasync.ResultSet;
import com.pgasync.Row;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* limitations under the License.
*/

package com.pgasync.impl;
package com.github.pgasync;

import com.pgasync.ResultSet;
import com.pgasync.SqlException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@
* limitations under the License.
*/

package com.pgasync.impl;
package com.github.pgasync;

import com.github.pgasync.PgRow;
import org.junit.ClassRule;
import org.junit.Test;

Expand Down

0 comments on commit af41d44

Please sign in to comment.