fix conflict with guava 16

This commit is contained in:
Sebastian Sdorra
2014-03-29 10:30:19 +01:00
parent 07363cbe82
commit 93728e71a1
9 changed files with 50 additions and 41 deletions

View File

@@ -491,7 +491,7 @@ public class HgHookCallbackServlet extends HttpServlet
}
finally
{
Closeables.closeQuietly(writer);
Closeables.close(writer, true);
}
}
}
@@ -538,14 +538,14 @@ public class HgHookCallbackServlet extends HttpServlet
//~--- fields ---------------------------------------------------------------
/** Field description */
private Provider<HgContext> contextProvider;
private final Provider<HgContext> contextProvider;
/** Field description */
private HgRepositoryHandler handler;
private final HgRepositoryHandler handler;
/** Field description */
private HookEventFacade hookEventFacade;
private final HookEventFacade hookEventFacade;
/** Field description */
private HgHookManager hookManager;
private final HgHookManager hookManager;
}