Skip to content

Commit

Permalink
remvoe debug
Browse files Browse the repository at this point in the history
  • Loading branch information
taoliult committed Sep 19, 2024
1 parent 251e249 commit 1e0820a
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1732,27 +1732,19 @@ private void loadProfileCheckProperties(String profileID) {
String name = (String) pNames.nextElement();
if (name.startsWith(profileID + '.') && name.contains(".jce.provider.")) {
profileCheckProviderNames.add(name);
System.out.println("TAO DEBUG - Added Providers: " + name);
} else if (name.startsWith(profileID + '.')) {
profileCheckPropertyNames.add(name);
System.out.println("TAO DEBUG - Added Property Names: " + name);
}
}
}

private void checkProfileCheckProperties(String profileID) {
if (!profileCheckProviderNames.isEmpty()) {
for (String s : profileCheckProviderNames) {
System.out.println("TAO DEBUG - Not empty providers: " + s);
}
printStackTraceAndExit(
"The order of providers in profile " + profileID
+ " (or its base profile) is incorrect.");
}
if (!profileCheckPropertyNames.isEmpty()) {
for (String p : profileCheckPropertyNames) {
System.out.println("TAO DEBUG - Not empty properties: " + p);
}
printStackTraceAndExit(
"The property name: " + profileCheckPropertyNames.toString()
+ " in profile " + profileID
Expand Down

0 comments on commit 1e0820a

Please sign in to comment.