- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for NoClone (0.45 seconds)
-
build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml
<module name="EmptyStatement"/> <module name="EqualsHashCode"/> <module name="ExplicitInitialization"/> <module name="MultipleVariableDeclarations"/> <module name="NoClone"/> <module name="NoFinalizer"/> <!--<module name="RedundantThrows">--> <!--<property name="allowUnchecked" value="true"/>--> <!--</module>-->
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 11 10:24:25 GMT 2025 - 6.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
* @param toClone the source authenticator to copy from */ protected static void cloneInternal(NtlmPasswordAuthenticator cloned, NtlmPasswordAuthenticator toClone) { cloned.domain = toClone.domain; cloned.username = toClone.username; cloned.password = toClone.password != null ? toClone.password.clone() : null; cloned.type = toClone.type; } /**Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 30.3K bytes - Click Count (0)