This is an automated email from the ASF dual-hosted git repository.
pradeep pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ranger.git
The following commit(s) were added to refs/heads/master by this push:
new 2e6f54e6d RANGER-5181:Assigned parameter values to instance variables
(#705)
2e6f54e6d is described below
commit 2e6f54e6dffdb24d83585a6dffdb2bd4dcd3dda6
Author: Chinmay Hegde <[email protected]>
AuthorDate: Thu Nov 13 11:51:31 2025 +0530
RANGER-5181:Assigned parameter values to instance variables (#705)
---
.../org/apache/ranger/authentication/unix/jaas/PamLoginModule.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/unixauthclient/src/main/java/org/apache/ranger/authentication/unix/jaas/PamLoginModule.java
b/unixauthclient/src/main/java/org/apache/ranger/authentication/unix/jaas/PamLoginModule.java
index 84d8a7ff7..9166ef0ef 100644
---
a/unixauthclient/src/main/java/org/apache/ranger/authentication/unix/jaas/PamLoginModule.java
+++
b/unixauthclient/src/main/java/org/apache/ranger/authentication/unix/jaas/PamLoginModule.java
@@ -61,9 +61,9 @@ public PamLoginModule() {
@Override
public void initialize(Subject subject, CallbackHandler callbackHandler,
Map<String, ?> sharedState, Map<String, ?> options) {
- subject = subject;
- callbackHandler = callbackHandler;
- options = new HashMap<>(options);
+ this.subject = subject;
+ this.callbackHandler = callbackHandler;
+ this.options = new HashMap<>(options);
}
@Override