Skip to content

Commit

Permalink
edit by checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkong committed Apr 12, 2013
1 parent 9e902d2 commit 2fe0617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/netease/qa/emmagee/utils/MailSender.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static boolean sendTextMail(String sender, String encryptPassword,
String smtp, String subject, String content, String file,
String[] maillists) {
if (maillists == null || maillists.length == 0
|| (maillists[0].trim().equals(""))) {
|| ("".equals(maillists[0].trim()))) {
return false;
} else {
// Get system properties
Expand Down

0 comments on commit 2fe0617

Please sign in to comment.