Skip to content

Commit

Permalink
Rename Domain name for Maven
Browse files Browse the repository at this point in the history
  • Loading branch information
KoMinkyu committed Jul 6, 2017
1 parent ed30a96 commit 33b0778
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
GROUP=me.minkyu.teaspoon
VERSION_NAME=0.4.0
GROUP=com.github.KoMinkyu.teaspoon
VERSION_NAME=0.3.5
2 changes: 1 addition & 1 deletion teaspoon-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'me.minkyu.teaspoon:teaspoon-plugin:0.3.4'
classpath 'com.github.KoMinkyu.teaspoon:teaspoon-plugin:0.3.5'
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ class TeaSpoonPlugin implements Plugin<Project> {
}

project.dependencies {
compile 'me.minkyu.teaspoon:teaspoon-processor:0.4.0'
compile 'com.github.KoMinkyu.teaspoon:teaspoon-processor:0.3.5'
compile 'org.aspectj:aspectjrt:1.8.8'

compile 'me.minkyu.teaspoon:teaspoon-annotations:0.4.0'
compile 'com.github.KoMinkyu.teaspoon:teaspoon-annotations:0.3.5'
}

variants.all { variant ->
Expand Down
32 changes: 16 additions & 16 deletions teaspoon-processor/src/main/java/teaspoon/ExecuteEngine.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

public class ExecuteEngine {
private final ExecutorService threadExecutor;
private final Handler uiExecutor;
final class ExecuteEngine {
private final ExecutorService threadExecutor;
private final Handler uiExecutor;

public ExecuteEngine() {
this(Executors.newCachedThreadPool());
}
ExecuteEngine() {
this(Executors.newCachedThreadPool());
}

public ExecuteEngine(ExecutorService customExecutorService) {
threadExecutor = customExecutorService;
uiExecutor = new Handler(Looper.getMainLooper());
}
ExecuteEngine(ExecutorService customExecutorService) {
threadExecutor = customExecutorService;
uiExecutor = new Handler(Looper.getMainLooper());
}

public void runOnUiThread(Runnable runnable, int delay) {
uiExecutor.postDelayed(runnable, delay);
}
void runOnUiThread(Runnable runnable, int delay) {
uiExecutor.postDelayed(runnable, delay);
}

public void runOnBackgroundThread(Runnable runnable) {
threadExecutor.submit(runnable);
}
void runOnBackgroundThread(Runnable runnable) {
threadExecutor.submit(runnable);
}
}

0 comments on commit 33b0778

Please sign in to comment.