1. 4e11457 fixup whitespace by sberlin · 13 years ago
  2. 7855aca fixup whitespace by sberlin · 13 years ago
  3. 81007ff fixup whitespace by sberlin · 13 years ago
  4. 4b86269 fixup whitespace by sberlin · 13 years ago
  5. 01758ce fixup whitespace by sberlin · 13 years ago
  6. d9c913a switch Guice from manually repackaging Guava to depending on Guava. it's still jarjar'd right now, which is causing a ~400k increase in guice-snapshot.jar. next step is to switch to ProGuard to remove the unnecessary code and cut it back down (even further?!). this will let people build from Guice source and depend directly on Guava code without having to worry about hiding internal/util. by sberlin · 13 years ago
  7. 8614255 refactor removeSuppressedTests out of AllTests, to remove the circular dependency between it & StrictContainerTestSuite. by sberlin · 13 years ago
  8. 6cf0488 Remove unnecessary import added in r1555 by drew.mclaughlin · 13 years ago
  9. 895fa39 Implement hashCode and equals for MultimapBinder. by drew.mclaughlin · 13 years ago
  10. 3391af3 remove stray <T> by sberlin · 13 years ago
  11. ba75f35 issue 631 -- expose dependency hierarchy in ProvisionListener. by sberlin · 13 years ago
  12. 5b73df6 rm @Override to maintain source compatibility. by sberlin · 13 years ago
  13. 132a5db issue 78 - provision interception. this only lets you listen to provisions (both before & after provisioning occurs), it does not let you change the return value of the provision. by sberlin · 13 years ago
  14. e133f5f Make the @RequestParameteters Map derive its values from the existing by isaac.q.shum · 13 years ago
  15. e7511fd Official cglib 2.2.2 artifact now available on Maven central by mcculls · 13 years ago
  16. c18cbce remove "involving constructors" since we support proxies for circular dependencies involving providers too now. by sberlin · 13 years ago
  17. d5737a6 fix @ProvidedBy circular dependencies. by sberlin · 13 years ago
  18. c94f450 assert that ProviderInternalFactory doesn't think circular dependencies exist when the providers are in different PrivateModules, temporarily remove check for @ProvidedBy due to other things that need fixing first. by sberlin · 13 years ago
  19. 425d099 fix provider circular dependency detection to use the Key it is creating, not the Key it is fulfulling, to catch errors sooner. by sberlin · 13 years ago
  20. e6ce188 fix issue 626 -- properly handle circular proxies between providers (either failing or proxying), prevents StackOverflowErrors. by sberlin · 13 years ago
  21. be2505a specify that interceptors are called in the order they are listed in bindInterceptor(Matcher, Matcher, Interceptor...). add a test that guarantees it. by sberlin · 13 years ago
  22. ca183a6 Fix maven build (TODO: replace dependency with official cglib-2.2.2 when it's on Maven Central) by mcculls · 13 years ago
  23. d4ec8b0 update to asm-3.3.1, update to new cglib that fixes a bug with bridge methods, add test that verifies the fix works. (previously it worked within Eclipse but not javac because eclipse's compiler wrote out bridge methods differently.) by sberlin · 13 years ago
  24. c905b82 Added updated 3.0 api diffs. by sberlin@gmail.com · 13 years ago
  25. 9f0627e Removed old 3.0 api diffs. by sberlin@gmail.com · 13 years ago
  26. 3400a7e Added updated Javadocs. by sberlin@gmail.com · 13 years ago
  27. 6e80e06 Removed old Javadocs. by sberlin@gmail.com · 13 years ago
  28. 4e10dab issue 418 - make sure servlet extension works with context paths. thanks to Henning for provided the patches. by sberlin · 13 years ago
  29. 07170cc remove phases from BindingProcessor, refactor so that two different classes do the two different bits, with an abstract superclass managing the shared pieces. by sberlin · 13 years ago
  30. 9207317 fix issue 614 -- admittedly not the prettiest solution, but it works. by sberlin · 13 years ago
  31. 3cff1b2 Added updated 3.0 api diffs. by sberlin@gmail.com · 13 years ago
  32. 9971840 Removed old 3.0 api diffs. by sberlin@gmail.com · 13 years ago
  33. 504d6c3 Added updated Javadocs. by sberlin@gmail.com · 13 years ago
  34. 66f41e9 Removed old Javadocs. by sberlin@gmail.com · 13 years ago
  35. 9cdfe3a issue 610 - let requireExplicitBindings still allow TypeConverters to create ConvertedConstantBindings. by sberlin · 13 years ago
  36. 1e5fc1d fix typo, make test not loop forever. by sberlin · 13 years ago
  37. 6e4e497 update stack trace pruning (for AOP-internal methods & generated methods) to include causes. by sberlin · 13 years ago
  38. cc17f14 significantly improve error reporting for binding a key already bound in a child injector or private module. include all sources in the error msg (since it can be in many sibling private modules or child injectors), including whether or not it as a JIT binding. by sberlin · 13 years ago
  39. bd7a14b make sure tests can run in on dist code, and no_aop can still build. by sberlin · 13 years ago
  40. b281953 test for issue 608. by sberlin · 13 years ago
  41. 0d8b52f issue 608 - child can rebind a parent binding if it was just-in-time. by sberlin · 13 years ago
  42. 95b3f8a issue 282 - mention quirks with optional dependencies, JIT bindings & child injectors in the javadoc. by sberlin · 13 years ago
  43. 336d222 add some logging for interceptors that may trigger issue 252. by sberlin · 13 years ago
  44. b7a4174 rm printStackTrace. by sberlin · 13 years ago
  45. 159cd86 validate that issue 432 is not a problem anymore. by sberlin · 13 years ago
  46. 45ca7f6 issue 345 - better error message for private modules. show the source of a child binding instead of just saying its in a child injector. also give a hint that you may have wanted to expose the binding. by sberlin · 13 years ago
  47. 77b8178 issue 602 - allow grapher to be rooted at keys. contributed by bojan, thanks! by sberlin · 13 years ago
  48. 65814e6 issue 595 -- persist extension didn't work if @Transacation was on the class, thanks to cgdecker for the patch and bug report! by sberlin · 13 years ago
  49. c17c5a9 issue 574 - don't freak out on generated classes when trying to get line numbers. by sberlin · 13 years ago
  50. 405828b issues 592 & 591, documentation updates. by sberlin · 13 years ago
  51. 23cf2d4 fix issue 594 -- assistedinject does the wrong thing if assisted type is scoped. by sberlin · 13 years ago
  52. 82d0fdb rework method interception so that methods that aren't intercepted don't go through cglib, reducing the number of stack frames in most method calls. this has a slight side effect that additional proxy classes are generated for a single class if (and only if) the intercepted methods change. if the intercepted methods remain the same, then the proxy classes will continue to be shared (so things like assistedinject will not blow up the heap). by sberlin · 13 years ago
  53. e0f5412 Remove AOP boilerplate from user visible stack traces. by limpbizkit@gmail.com · 13 years ago
  54. a3c948e add utility to compare ant & maven output. by sberlin@gmail.com · 13 years ago
  55. fe370ca Added updated 3.0 api diffs. by sberlin@gmail.com · 13 years ago
  56. 25466e2 Removed old 3.0 api diffs. by sberlin@gmail.com · 13 years ago
  57. 83909bb Added updated Javadocs. by sberlin@gmail.com · 13 years ago
  58. 174d7a0 Removed old Javadocs. by sberlin@gmail.com · 13 years ago
  59. d5fcf7c don't include pom.xml & pom.properties in maven build, to better mirror ant build. by sberlin · 13 years ago
  60. 33018c3 Add standard Apache LICENSE and NOTICE files to the Maven build by mcculls · 13 years ago
  61. 92f3eab Use correct timestamped CGLIB release in Maven build by mcculls · 13 years ago
  62. b0548c3 Update Maven build to use same level of CGLIB as Ant build by mcculls · 13 years ago
  63. 8468bab Fix for issues 581 and 582 by dhanji · 13 years ago
  64. c9ece6b add grapher to distribution by sberlin@gmail.com · 13 years ago
  65. 672d074 implement hashcode when implementing equals. by sberlin · 13 years ago
  66. 7691f9e require ProviderMethod instance to be equal also, per jessewilson review. by sberlin · 13 years ago
  67. 1068a4a allow duplicate @Provides methods to be deduplicated also. by sberlin · 13 years ago
  68. c9d97cf Cache annotation lookups. by crazyboblee · 13 years ago
  69. fc46e1a Fix warnings in core. by limpbizkit@gmail.com · 13 years ago
  70. f981ab5 Enable all warnings except for serialization warnings. by limpbizkit@gmail.com · 13 years ago
  71. ea27c01 review comments from jesse. by sberlin · 13 years ago
  72. 8b64d45 Remove InjectorBuilder in favor of methods in Binder. by sberlin · 13 years ago
  73. c2420fb Cleanup pom - lock deploy plugin to 2.5 and remove extra source/javadoc profile as they are already enabled when building with -DperformRelease by mcculls · 13 years ago
  74. 01941a0 Use same release profile id as the main google pom by mcculls · 13 years ago
  75. 692ca95 Align Maven no_aop classifier to match the Ant target by mcculls · 13 years ago
  76. 16f8b0f fix issue 578, Providers.guicify loses injection points from the delegate. by sberlin · 13 years ago
  77. d00bb05 add missing @since tag. by sberlin · 13 years ago
  78. 3bdf721 fix for NO_AOP build. by sberlin · 13 years ago
  79. 251cda6 Added updated 3.0 api diffs. by sberlin@gmail.com · 13 years ago
  80. b2f65f1 Removed old 3.0 api diffs. by sberlin@gmail.com · 13 years ago
  81. 8c470a4 Added updated Javadocs. by sberlin@gmail.com · 13 years ago
  82. a6fe2d3 Removed old Javadocs. by sberlin@gmail.com · 13 years ago
  83. cf09ab9 put generics back in Struts2Factory. by sberlin · 13 years ago
  84. 2244882 update uploadApiDiffs to update the version.xml in latest-api-diffs. by sberlin · 13 years ago
  85. a523ea5 rm jsr330, move the one method into Providers. by sberlin · 13 years ago
  86. c1d48f8 cleanup struts2 examples/code. by sberlin · 13 years ago
  87. 4489484 Add source and javadoc to Maven release profile by mcculls · 13 years ago
  88. 81a0c60 re-add struts2 to build.xml & pom.xml, cleanup compile. by sberlin@gmail.com · 14 years ago
  89. 95d0418 changes to the struts2 plugin, by Ben McCann. by sberlin@gmail.com · 14 years ago
  90. 12c1a0a Pull back struts2 extension code in preperation for changes to make it better. by sberlin@gmail.com · 14 years ago
  91. b886ce3 rm ServletScopes.nullObject -- use a null value in the map to seed a key with null. by sberlin · 14 years ago
  92. 4d93ce6 fix license. by sberlin@gmail.com · 14 years ago
  93. ba8a4cd add more tests for @CheckedProvides methods, fix bug exposed with @Exposed methods, cleanup class names & javadoc. by sberlin@gmail.com · 14 years ago
  94. 5d5941f rm documentation that a TypeLiteral with wildcard character (such as List<? extends CharSequence>) doesn't work, add a test that asserts it does work. by sberlin · 14 years ago
  95. 4d4e160 Clarify that the Maven build requires Maven3 and cleanup temporary CGLIB dependency by mcculls · 14 years ago
  96. 2196786 allow scopeRequest/continueRequest to seed with a null value, and also type-check the values immediately. by sberlin · 14 years ago
  97. fcb2b1b discontinue the struts2 extension. by sberlin · 14 years ago
  98. 68f2b6c Added updated 3.0 api diffs. by sberlin@gmail.com · 14 years ago
  99. c924d62 Removed old 3.0 api diffs. by sberlin@gmail.com · 14 years ago
  100. 74970c3 Added updated Javadocs. by sberlin@gmail.com · 14 years ago