Builds a naming context. @param env The environment to use to construct the naming context @param name The name of the associated Catalina Context
(Hashtable<String,Object> env, String name)
| 70 | * @param name The name of the associated Catalina Context |
| 71 | */ |
| 72 | public NamingContext(Hashtable<String,Object> env, String name) { |
| 73 | this(env, name, new HashMap<>()); |
| 74 | } |
| 75 | |
| 76 | |
| 77 | /** |
nothing calls this directly
no test coverage detected