Fix typo in RestContextImpl.close

This commit is contained in:
Andrew Gaul 2011-11-09 15:08:04 -08:00
parent e9cff5e17c
commit 95ff254882
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public class RestContextImpl<S, A> implements RestContext<S, A> {
try { try {
closer.close(); closer.close();
} catch (IOException e) { } catch (IOException e) {
logger.error(e, "error closing content"); logger.error(e, "error closing context");
} }
} }