We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08b2e9e commit 487baa3Copy full SHA for 487baa3
2 files changed
src/main/java/org/filesys/server/filesys/TreeConnection.java
@@ -178,7 +178,7 @@ public synchronized NetworkFile findFile(int fid) {
178
*/
179
public final boolean hasContext() {
180
if (m_shareDev != null)
181
- return m_shareDev.getContext() != null ? true : false;
+ return m_shareDev.getContext() != null;
182
return false;
183
}
184
src/main/java/org/filesys/smb/server/SMBSrvSession.java
@@ -105,7 +105,7 @@ public enum Dbg {
105
SIGNING, // request/response signing
106
ENCRYPTION, // Encryption/decryption
107
AUDIT, // Auditing
108
- POSTPROC // Post processing
+ POSTPROC, // Post processing
109
110
111
// Server session object factory
0 commit comments