Organize imports

Use "organize imports" from Eclipse to cleanup import statements so
that they appear in a consistent and well defined order.

Issue gh-8945
This commit is contained in:
Phillip Webb
2020-08-05 11:35:47 -07:00
committed by Rob Winch
parent 5f64f53c3f
commit 37fa94fafc
1381 changed files with 5449 additions and 3969 deletions

View File

@@ -16,11 +16,11 @@
package org.springframework.security.taglibs;
import javax.servlet.jsp.tagext.Tag;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import javax.servlet.jsp.tagext.Tag;
/**
* internal configuration class for taglibs.
*

View File

@@ -27,6 +27,7 @@ import javax.servlet.jsp.tagext.TagSupport;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.security.access.PermissionEvaluator;
import org.springframework.security.core.Authentication;

View File

@@ -16,15 +16,6 @@
package org.springframework.security.taglibs.authz;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContext;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.web.util.TextEscapeUtils;
import org.springframework.beans.BeanWrapperImpl;
import org.springframework.beans.BeansException;
import org.springframework.web.util.TagUtils;
import java.io.IOException;
import javax.servlet.jsp.JspException;
@@ -32,6 +23,14 @@ import javax.servlet.jsp.PageContext;
import javax.servlet.jsp.tagext.Tag;
import javax.servlet.jsp.tagext.TagSupport;
import org.springframework.beans.BeanWrapperImpl;
import org.springframework.beans.BeansException;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContext;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.web.util.TextEscapeUtils;
import org.springframework.web.util.TagUtils;
/**
* An {@link javax.servlet.jsp.tagext.Tag} implementation that allows convenient access to
* the current <code>Authentication</code> object.

View File

@@ -16,7 +16,7 @@
package org.springframework.security.taglibs.authz;
import java.io.IOException;
import java.util.*;
import java.util.List;
import javax.servlet.ServletContext;
import javax.servlet.ServletRequest;

View File

@@ -16,11 +16,12 @@
package org.springframework.security.taglibs.csrf;
import org.springframework.security.web.csrf.CsrfToken;
import java.io.IOException;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.TagSupport;
import java.io.IOException;
import org.springframework.security.web.csrf.CsrfToken;
/**
* An abstract tag for handling CSRF operations.