[jboss-cvs] jboss-seam/src/main/org/jboss/seam/interceptors ...
Shane Bryzak
Shane_Bryzak at symantec.com
Mon Jan 15 05:06:55 EST 2007
User: sbryzak2
Date: 07/01/15 05:06:55
Modified: src/main/org/jboss/seam/interceptors
SecurityInterceptor.java
Log:
fixed NPE, minor changes
Revision Changes Path
1.21 +1 -1 jboss-seam/src/main/org/jboss/seam/interceptors/SecurityInterceptor.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: SecurityInterceptor.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/SecurityInterceptor.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- SecurityInterceptor.java 13 Jan 2007 05:36:06 -0000 1.20
+++ SecurityInterceptor.java 15 Jan 2007 10:06:55 -0000 1.21
@@ -67,6 +67,6 @@
"Method %s is not a component method", method));
}
- return String.format("#{s:hasPermission('%s','%s', null)}", name, method.getName());
+ return String.format("#{s:hasPermission('%s','%s')}", name, method.getName());
}
}
More information about the jboss-cvs-commits
mailing list