Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Commit

Permalink
updated imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Michail Plushnikov committed Feb 16, 2014
1 parent 3aa2a51 commit e84b3dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package de.plushnikov.delegate;

import java.util.concurrent.Callable;

public class DelegateOnMethod implements Callable<Void> {
private Callable<Void> calcDelegated() {
return new Callable<Void>() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

import lombok.Delegate;

interface Callable<V> {
V call() throws Exception;
}
import java.util.concurrent.Callable;

public class DelegateWithException implements Callable<Integer> {

Expand Down

0 comments on commit e84b3dc

Please sign in to comment.