Skip to content

Commit

Permalink
remove annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaofei-it committed Jun 24, 2016
1 parent 0adc4df commit 113d079
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 219 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

89 changes: 43 additions & 46 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 0 additions & 17 deletions shelly/src/main/java/xiaofei/library/shelly/Domino.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,23 +93,6 @@ protected Player<T, R> getPlayer() {
* T是原本输入的参数类型,R是将传给下面的参数类型!
*
*/
@Deprecated
public Domino<T, R> target(final Class<?> clazz, final String target) {
return new Domino<T, R>(mLabel, new Player<T, R>() {
@Override
public Scheduler<R> call(List<T> input) {
final Scheduler<R> scheduler = mPlayer.call(input);
scheduler.play(new Player<R, R>() {
@Override
public Scheduler<R> call(List<R> input) {
TARGET_CENTER.call(clazz, target, input);
return scheduler;
}
});
return scheduler;
}
});
}

public <U> Domino<T, R> target(final Class<? extends U> clazz, final TargetAction0<? super U> targetAction0) {
return new Domino<T, R>(mLabel, new Player<T, R>() {
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 113d079

Please sign in to comment.