This is an automated email from the ASF dual-hosted git repository.
ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git
The following commit(s) were added to refs/heads/master by this push:
new 62dad9e Remove commented println()
62dad9e is described below
commit 62dad9ebd4ae80c645764deb0e7febe43983af41
Author: Francesco Chicchiriccò <[email protected]>
AuthorDate: Tue Apr 16 16:29:17 2019 +0200
Remove commented println()
---
.../test/java/org/apache/syncope/core/spring/security/EncryptorTest.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/core/spring/src/test/java/org/apache/syncope/core/spring/security/EncryptorTest.java
b/core/spring/src/test/java/org/apache/syncope/core/spring/security/EncryptorTest.java
index 4ec78b9..f7fb603 100644
---
a/core/spring/src/test/java/org/apache/syncope/core/spring/security/EncryptorTest.java
+++
b/core/spring/src/test/java/org/apache/syncope/core/spring/security/EncryptorTest.java
@@ -74,7 +74,6 @@ public class EncryptorTest {
@Test
public void testSaltedHash() throws Exception {
String encPassword = encryptor.encode(password,
CipherAlgorithm.SSHA256);
- // System.out.println("ENC: " + encPassword);
assertNotNull(encPassword);
assertTrue(encryptor.verify(password, CipherAlgorithm.SSHA256,
encPassword));