Removed redundant static modifier from interface

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@723315 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
mcombellack 2008-12-04 13:29:38 +00:00
parent 7d27838a84
commit 44ef22d492

View file

@ -21,8 +21,8 @@ package org.apache.tuscany.sca.core.work;
public interface WorkListener {
static long IMMEDIATE = 0;
static long INDEFINITE = java.lang.Long.MAX_VALUE;
long IMMEDIATE = 0;
long INDEFINITE = java.lang.Long.MAX_VALUE;
void workAccepted(WorkEvent event);
void workCompleted(WorkEvent event);