Skip to content
Snippets Groups Projects
  1. Apr 25, 2017
  2. Feb 14, 2017
    • Daniel Gerhardt's avatar
      Clean up code · bbb7288c
      Daniel Gerhardt authored
      * Remove unused code
      * Optimize imports (group 10+ and static imports)
      * Remove redundant variable assignments
      * Replace explicit type parameters with <>
      * Remove redundant catch blocks
      * Use varargs instead of explicit array instantiation
      * Weaken visibility of methods and fields
      * Simplify conditions
      * Do not use StringBuilder for simple concatenations
      * Fix code style
      * Remove invalid Javadoc
      bbb7288c
  3. Jan 10, 2017
  4. Feb 05, 2016
  5. Feb 19, 2015
  6. Aug 21, 2014
  7. Jun 02, 2014
  8. May 28, 2014
  9. May 26, 2014
  10. May 21, 2014
  11. May 20, 2014
  12. May 19, 2014
  13. Jul 09, 2013
  14. Feb 19, 2013
  15. Feb 12, 2013
  16. Oct 31, 2012
  17. Oct 29, 2012
  18. Oct 25, 2012
  19. Oct 24, 2012
  20. Oct 17, 2012
  21. Oct 16, 2012
    • Paul-Christian Volkmer's avatar
      Use exceptions instead of checking for null to send correct http code · 6508a634
      Paul-Christian Volkmer authored
      If a session was not found in database this will result in http 404,
      if the session is not accessable for the current user the request will
      result in http 403.
      
      The old behavior was to check for null. This was the response if the
      session was not found or the current user could not access this session
      (not owner and inactive sessions). Both ended up with http 404 - not found.
      6508a634
  22. Sep 19, 2012