Skip to content
Snippets Groups Projects
Commit 8ffbdaed authored by Christian Wulf's avatar Christian Wulf
Browse files

declared some classes as deprecated

parent 15eb43fb
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,13 @@ ...@@ -15,6 +15,13 @@
*/ */
package teetime.framework.idle; package teetime.framework.idle;
/**
*
* @author Christian Wulf
*
* @deprecated since 1.1
*/
@Deprecated
public interface IdleStrategy { public interface IdleStrategy {
void execute() throws InterruptedException; void execute() throws InterruptedException;
......
...@@ -15,6 +15,10 @@ ...@@ -15,6 +15,10 @@
*/ */
package teetime.framework.idle; package teetime.framework.idle;
/**
* @deprecated since 1.1
*/
@Deprecated
public final class YieldStrategy implements IdleStrategy { public final class YieldStrategy implements IdleStrategy {
@Override @Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment