Skip to content
This repository was archived by the owner on May 28, 2018. It is now read-only.

Commit a27a122

Browse files
author
Adam Lindenthal
authored
Merge pull request #212 from bakksjo/fix-hint-bug
Fix bug causing hints to be printed as warnings.
2 parents 7393550 + 82b4e26 commit a27a122

File tree

1 file changed

+1
-1
lines changed
  • core-common/src/main/java/org/glassfish/jersey/internal

1 file changed

+1
-1
lines changed

core-common/src/main/java/org/glassfish/jersey/internal/Errors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ private static boolean logErrors(final Collection<ErrorMessage> errors) {
178178
warnings.append(LocalizationMessages.WARNING_MSG(error.getMessage())).append('\n');
179179
break;
180180
case HINT:
181-
warnings.append(LocalizationMessages.HINT_MSG(error.getMessage())).append('\n');
181+
hints.append(LocalizationMessages.HINT_MSG(error.getMessage())).append('\n');
182182
break;
183183
}
184184
}

0 commit comments

Comments
 (0)