1. 20 6月, 2011 11 次提交
  2. 19 6月, 2011 4 次提交
  3. 18 6月, 2011 5 次提交
  4. 17 6月, 2011 10 次提交
  5. 16 6月, 2011 5 次提交
    • C
      Fix regression with covariant property return types · 5dc2d566
      Chris Beams 提交于
      Prior to this change, the Property class introduced in 3.1 M2 validated
      read/write property method pairs based on whether their parameter/return
      types were equal to one another.  This precluded the valid possibility
      of read method that returns a subtype of the write method's parameter
      type, and represented a regression against 3.1 M1 and earlier versions.
      
      The implementation now uses isAssignableFrom rather than a straight
      equals check against the types.
      
      Issue: SPR-8432
      5dc2d566
    • C
      Revert "Re-enable ignored JMX tests" · cc814519
      Chris Beams 提交于
      As of SPR-8093, jmxremote_optional.jar is present on the build
      server in jre/lib/ext, but it is not by default present on local
      developer / user machines, meaning that the build ends up broken
      by default.
      
      Issue: SPR-8089, SPR-8093, SPR-8458
      cc814519
    • C
      Preserve shadowed fields in DirectFieldAccessor · 0e9e63e0
      Chris Beams 提交于
      Prior to this change, DirectFieldAccessor would ignore fields shadowed
      in subclasses, favoring the last field processed, which happens to be
      the most super declaration based on the way ReflectionUtils.doWithFields
      works.
      
      Because the locally shadowed field may be of a different type that the
      superclass declaration, it is most correct to preserve and work with
      the shadowed field.
      
      Issue: SPR-8398
      0e9e63e0
    • C
      Update pom and .classpath to reflect Castor upgrade · 2aaf14e9
      Chris Beams 提交于
      Issue: SPR-8341 SPR-8453
      2aaf14e9
    • R
  6. 15 6月, 2011 5 次提交