Skip to content

Commit

Permalink
Renaming package to threadposter
Browse files Browse the repository at this point in the history
  • Loading branch information
techyourchance committed Jul 21, 2018
1 parent 65c778f commit c632f73
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import android.widget.ProgressBar;
import android.widget.TextView;

import com.techyourchance.threadposterandroid.UiThreadPoster;
import com.techyourchance.threadposterandroid.BackgroundThreadPoster;
import com.techyourchance.threadposter.UiThreadPoster;
import com.techyourchance.threadposter.BackgroundThreadPoster;

public class SampleActivity extends AppCompatActivity implements SampleWorker.SampleWorkerListener {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import android.support.annotation.UiThread;
import android.support.annotation.WorkerThread;

import com.techyourchance.threadposterandroid.UiThreadPoster;
import com.techyourchance.threadposterandroid.BackgroundThreadPoster;
import com.techyourchance.threadposter.UiThreadPoster;
import com.techyourchance.threadposter.BackgroundThreadPoster;

import java.util.Collections;
import java.util.Set;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.techyourchance.threadposters;

import com.techyourchance.threadposterandroid.UiThreadPoster;
import com.techyourchance.threadposterandroid.UiThreadPosterTestDouble;
import com.techyourchance.threadposterandroid.BackgroundThreadPoster;
import com.techyourchance.threadposterandroid.BackgroundThreadPosterTestDouble;
import com.techyourchance.threadposter.UiThreadPoster;
import com.techyourchance.threadposter.UiThreadPosterTestDouble;
import com.techyourchance.threadposter.BackgroundThreadPoster;
import com.techyourchance.threadposter.BackgroundThreadPosterTestDouble;

/**
* This is a convenience wrapper class for tests. It also ensures the correct order of joining
Expand Down
2 changes: 1 addition & 1 deletion threadposter/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<manifest package="com.techyourchance.threadposterandroid"
<manifest package="com.techyourchance.threadposter"
xmlns:android="http://schemas.android.com/apk/res/android">

<application
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.techyourchance.threadposterandroid;
package com.techyourchance.threadposter;

import java.util.concurrent.SynchronousQueue;
import java.util.concurrent.ThreadFactory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.techyourchance.threadposterandroid;
package com.techyourchance.threadposter;


import java.util.LinkedList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.techyourchance.threadposterandroid;
package com.techyourchance.threadposter;

import android.os.Handler;
import android.os.Looper;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.techyourchance.threadposterandroid;
package com.techyourchance.threadposter;

import android.os.Handler;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.techyourchance.threadposterandroid;
package com.techyourchance.threadposter;


import org.junit.Before;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.techyourchance.threadposterandroid;
package com.techyourchance.threadposter;

import org.junit.Before;
import org.junit.ClassRule;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.techyourchance.threadposterandroid;
package com.techyourchance.threadposter;

import android.os.Handler;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.techyourchance.threadposterandroid;
package com.techyourchance.threadposter;

import org.junit.Before;
import org.junit.Test;
Expand Down

0 comments on commit c632f73

Please sign in to comment.