Skip to content

Commit

Permalink
final on effective final
Browse files Browse the repository at this point in the history
Signed-off-by: pizzi80 <[email protected]>
  • Loading branch information
pizzi80 committed Sep 12, 2024
1 parent 7ca5f4c commit b9d3d80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions impl/src/test/java/com/sun/faces/mock/MockServletContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
// Mock Object for ServletContext (Version 4.0)
public class MockServletContext implements ServletContext {

private Hashtable<String, Object> attributes = new Hashtable<>();
private Hashtable<String, String> parameters = new Hashtable<>();
private final Hashtable<String, Object> attributes = new Hashtable<>();
private final Hashtable<String, String> parameters = new Hashtable<>();

// --------------------------------------------------------- Public Methods
public void addInitParameter(String name, String value) {
Expand Down

0 comments on commit b9d3d80

Please sign in to comment.