improved javadoc
This commit is contained in:
parent
2772f147e5
commit
de14c51627
|
@ -28,7 +28,6 @@ import org.eclipse.jetty.util.resource.Resource;
|
|||
/**
|
||||
* AbsoluteOrdering
|
||||
*
|
||||
* An <absolute-order> element in web.xml
|
||||
*/
|
||||
public class AbsoluteOrdering implements Ordering
|
||||
{
|
||||
|
@ -42,10 +41,6 @@ public class AbsoluteOrdering implements Ordering
|
|||
_metaData = metaData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Order the list of jars in WEB-INF/lib according to the ordering declarations in the descriptors
|
||||
* @see org.eclipse.jetty.webapp.Ordering#order(java.util.List)
|
||||
*/
|
||||
@Override
|
||||
public List<Resource> order(List<Resource> jars)
|
||||
{
|
||||
|
|
|
@ -22,12 +22,10 @@ import java.util.List;
|
|||
|
||||
import org.eclipse.jetty.util.resource.Resource;
|
||||
|
||||
|
||||
/**
|
||||
* Ordering options for jars in WEB-INF lib.
|
||||
*/
|
||||
public interface Ordering
|
||||
{
|
||||
public List<Resource> order(List<Resource> fragments);
|
||||
|
||||
public List<Resource> order(List<Resource> fragments);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue