Update of 
/var/cvs/contributions/CMSContainer_Modules/community/src/java/com/finalist/cmsc/community/taglib
In directory 
james.mmbase.org:/tmp/cvs-serv25548/community/src/java/com/finalist/cmsc/community/taglib

Modified Files:
        ListUsersTag.java ListGroupsTag.java CommunityTagSupport.java 
Log Message:
CMSC-852 Cleanup java files


See also: 
http://cvs.mmbase.org/viewcvs/contributions/CMSContainer_Modules/community/src/java/com/finalist/cmsc/community/taglib
See also: http://www.mmbase.org/jira/browse/CMSC-852


Index: ListUsersTag.java
===================================================================
RCS file: 
/var/cvs/contributions/CMSContainer_Modules/community/src/java/com/finalist/cmsc/community/taglib/ListUsersTag.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- ListUsersTag.java   30 Jan 2008 16:02:09 -0000      1.3
+++ ListUsersTag.java   12 Apr 2008 14:26:31 -0000      1.4
@@ -4,7 +4,6 @@
 import java.util.List;
 
 import javax.servlet.http.HttpServletRequest;
-import javax.servlet.jsp.JspException;
 import javax.servlet.jsp.PageContext;
 
 import com.finalist.cmsc.services.community.security.Authentication;
@@ -18,7 +17,7 @@
        private String var;
        
        @Override
-       protected void doTagLogic() throws JspException, IOException {
+       protected void doTagLogic() throws IOException {
                PageContext ctx = (PageContext) getJspContext();
                HttpServletRequest req = (HttpServletRequest) ctx.getRequest();
                


Index: ListGroupsTag.java
===================================================================
RCS file: 
/var/cvs/contributions/CMSContainer_Modules/community/src/java/com/finalist/cmsc/community/taglib/ListGroupsTag.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- ListGroupsTag.java  6 Feb 2008 14:50:36 -0000       1.2
+++ ListGroupsTag.java  12 Apr 2008 14:26:31 -0000      1.3
@@ -4,7 +4,6 @@
 import java.util.Set;
 
 import javax.servlet.http.HttpServletRequest;
-import javax.servlet.jsp.JspException;
 import javax.servlet.jsp.PageContext;
 
 import com.finalist.cmsc.services.community.security.AuthorityService;
@@ -16,7 +15,7 @@
        private String var;
 
        @Override
-       protected void doTagLogic() throws JspException, IOException {
+       protected void doTagLogic() throws IOException {
                PageContext ctx = (PageContext) getJspContext();
                HttpServletRequest req = (HttpServletRequest) ctx.getRequest();
 


Index: CommunityTagSupport.java
===================================================================
RCS file: 
/var/cvs/contributions/CMSContainer_Modules/community/src/java/com/finalist/cmsc/community/taglib/CommunityTagSupport.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- CommunityTagSupport.java    30 Jan 2008 16:02:09 -0000      1.2
+++ CommunityTagSupport.java    12 Apr 2008 14:26:31 -0000      1.3
@@ -2,7 +2,6 @@
 
 import java.io.IOException;
 
-import javax.servlet.http.HttpServletRequest;
 import javax.servlet.jsp.JspException;
 import javax.servlet.jsp.PageContext;
 import javax.servlet.jsp.tagext.SimpleTagSupport;
@@ -34,8 +33,6 @@
        @Override
        public void doTag() throws JspException, IOException {
                PageContext pctx = (PageContext) getJspContext();
-               HttpServletRequest req = (HttpServletRequest) pctx.getRequest();
-               
                ctx = 
WebApplicationContextUtils.getRequiredWebApplicationContext(pctx.getServletContext());
                
ctx.getAutowireCapableBeanFactory().autowireBeanProperties(this, 
Autowire.BY_NAME.value(), false);
 
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to