Commit 1fbc0ae13f9ff028ddd65e8302492a4fd195f39f
1 parent
8dd957de
Exists in
master
Resolvendo a advertência do Sonar: Bad practice - Serializable inner
class
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
impl/core/src/main/java/br/gov/frameworkdemoiselle/internal/implementation/SecurityContextImpl.java
... | ... | @@ -208,7 +208,7 @@ public class SecurityContextImpl implements SecurityContext { |
208 | 208 | } |
209 | 209 | } |
210 | 210 | |
211 | - private class EmptyUser implements Principal, Serializable { | |
211 | + private static class EmptyUser implements Principal, Serializable { | |
212 | 212 | |
213 | 213 | private static final long serialVersionUID = 1L; |
214 | 214 | ... | ... |