1. 02 12月, 2016 1 次提交
  2. 01 12月, 2016 1 次提交
  3. 17 7月, 2015 1 次提交
  4. 26 10月, 2013 1 次提交
    • P
      Make EvaluationException more informative · 014d156f
      Phillip Webb 提交于
      Update EvaluationException to expose the toDetailedString() method as
      the exception message. The simple message can now be accessed via the
      new getSimpleMessage() method.
      
      Issue: SPR-10938
      014d156f
  5. 25 6月, 2013 1 次提交
  6. 29 12月, 2012 3 次提交
    • C
      Update Apache license headers for affected sources · 8472a2b2
      Chris Beams 提交于
      8472a2b2
    • P
      Fix [serial] compiler warnings · b0986049
      Phillip Webb 提交于
      Fix serialization warnings by applying @SuppressWarnings("serial")
      when appropriate.
      
      In certain cases and for unknown reasons, a correctly-placed
      @SuppressWarnings("serial") annotation will fix the warning at the
      javac level (i.e. the Gradle command-line), but will produce an
      "unnecessary @SuppressWarnings" warning within Eclipse. In these
      cases, a private static final serialVersionUID field has been added
      with the default value of 1L.
      b0986049
    • P
      Remove trailing whitespace in source files · 1762157a
      Phillip Webb 提交于
        find . -type f -name "*.java" -or -name "*.aj" | \
          xargs perl -p -i -e "s/[ \t]*$//g" {} \;
      
      Issue: SPR-10127
      1762157a
  7. 31 1月, 2012 1 次提交
    • C
      Rename modules {org.springframework.*=>spring-*} · 02a4473c
      Chris Beams 提交于
      This renaming more intuitively expresses the relationship between
      subprojects and the JAR artifacts they produce.
      
      Tracking history across these renames is possible, but it requires
      use of the --follow flag to `git log`, for example
      
          $ git log spring-aop/src/main/java/org/springframework/aop/Advisor.java
      
      will show history up until the renaming event, where
      
          $ git log --follow spring-aop/src/main/java/org/springframework/aop/Advisor.java
      
      will show history for all changes to the file, before and after the
      renaming.
      
      See http://chrisbeams.com/git-diff-across-renamed-directories
      02a4473c
  8. 14 10月, 2009 1 次提交
  9. 27 5月, 2009 1 次提交