Skip to content

Commit 099e514

Browse files
JavaJoeSjukzi
authored andcommitted
Removing print statements
1 parent 1754d67 commit 099e514

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

team/bundles/org.eclipse.core.pki/src/org/eclipse/core/pki/auth/PublicKeySecurity.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717

1818
public enum PublicKeySecurity {
1919
INSTANCE;
20-
21-
// protected String pin = "#Gone2Boat@Bay"; //$NON-NLS-1$
2220
protected byte[] salt = new byte[16];
2321
public boolean isTurnedOn() {
2422
return SecurityFileSnapshot.INSTANCE.image();

team/bundles/org.eclipse.core.pki/src/org/eclipse/core/pki/util/DotPkiPropertiesRequired.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public enum DotPkiPropertiesRequired {
1818
List<String> list = get();
1919
public boolean testFile(Path path) {
2020
Properties properties=new Properties();
21-
System.out.println("DotPkiPropertiesRequired testFile:"+path.toString());
21+
//System.out.println("DotPkiPropertiesRequired testFile:"+path.toString());
2222
try {
2323
if (Files.exists(path)) {
2424
final FileChannel channel = FileChannel.open(path, StandardOpenOption.READ);

0 commit comments

Comments
 (0)