Skip to content

Commit

Permalink
[JENKINS-37566] - Fix imports and code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-nenashev committed Oct 7, 2016
1 parent a185cb2 commit 408bc16
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/main/java/hudson/remoting/Launcher.java
Expand Up @@ -78,6 +78,10 @@
import java.net.HttpURLConnection;
import java.net.Authenticator;
import java.net.PasswordAuthentication;
import java.security.GeneralSecurityException;
import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
Expand Down
Expand Up @@ -86,7 +86,7 @@ public static boolean makeAccessibleOrLog(final @Nonnull AccessibleObject object
try {
makeAccessible(object);
} catch (PrivilegedActionException ex) {
logger.log(level, String.format("Cannot make the field {0} accessible", object), ex);
logger.log(level, String.format("Cannot make the field %s accessible", object), ex);
return false;
}
return true;
Expand Down

0 comments on commit 408bc16

Please sign in to comment.