id
int64
1
6.5k
bug_id
int64
2.03k
426k
summary
stringlengths
9
251
description
stringlengths
1
32.8k
report_time
stringlengths
19
19
report_timestamp
int64
1B
1.39B
status
stringclasses
6 values
commit
stringlengths
7
9
commit_timestamp
int64
1B
1.39B
files
stringlengths
25
32.8k
project_name
stringclasses
6 values
201
148,737
Bug 148737 IllegalStateException for non-generic type
I believe this is similar to 112880. The message and stack trace I am getting are -- (IllegalStateException) Can't ask to parameterize a member of non-generic type: com...object kind(raw) Can't ask to parameterize a member of non-generic type: com...object kind(raw) java.lang.IllegalStateException: Can't ask to paramet...
2006-06-26 20:09:45
1,151,370,000
resolved fixed
f6834c7
1,151,930,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/BuildArgParser.java tests/bugs153/pr148737/A.java tests/src/org/aspectj/systemtest/ajc153/Ajc153Tests.java
AspectJ
202
148,972
Bug 148972 problems with binary weaving declare parents in mixed environment.
These have been reported to me on a large system doing some intricate weaving where some classes are 1.2, some 1.4, some 1.5 and the VM is 1.5. Binary weaving declare parents sometimes refuses to allow the modification of the hierarchy because it sees a clash between two methods when there is none. The two cases I'm fi...
2006-06-28 07:24:43
1,151,490,000
resolved fixed
2f2f568
1,151,500,000
tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java weaver/src/org/aspectj/weaver/bcel/BcelTypeMunger.java
AspectJ
203
148,727
Bug 148727 Can't call synthetic aspectOf method on aspect in library jar
Separate compilation of the following program breaks on 1.5.2rc1 because of the recent change to marking aspect methods as synthetic: public aspect Asp { } public class Client { public static void main(String argz[]) { System.out.println("Can call aspectOf? "+Asp.aspectOf()); } } C:\devel\scratch\synthetic>ajc -classpa...
2006-06-26 16:46:03
1,151,350,000
resolved fixed
21e06a6
1,151,490,000
tests/bugs152/pr148727/Client.java tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java weaver/src/org/aspectj/weaver/NameMangler.java
AspectJ
204
148,911
Bug 148911 NPR compiling Spring
The Spring 2.0 RC1 project contains two directories with aspects. Since the eclipse project does not compile cleanly with just the java nature, I decided to try adding the aspectj nature and giving the aspectj builder a shot. I don't have any idea what might be the trigger to the problem, but simply checking out Spring...
2006-06-27 19:29:58
1,151,450,000
resolved fixed
b59b036
1,151,480,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmElementFormatter.java
AspectJ
205
148,388
Bug 148388 LTW weaver produces a debug message at the begining
null
2006-06-23 09:55:32
1,151,070,000
resolved fixed
99d1c18
1,151,430,000
weaver/src/org/aspectj/weaver/tools/WeavingAdaptor.java
AspectJ
206
148,786
Bug 148786 new array construction join point can fail for freaky array constructors
Took me a while to discover how to recreate this problem, but this class: public class A { public static void main(String []argv) { byte[][] bytes = new byte[][]{{0},{1}}; } } causes this bytecode: 0: iconst_2 1: anewarray #18; //class "[B" and this causes the newarray joinpoint code to go bang. (eg. before(): call(*[]...
2006-06-27 05:42:49
1,151,400,000
resolved fixed
792d1df
1,151,410,000
tests/bugs152/pr148786/A.java tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
AspectJ
207
147,711
Bug 147711 Add an option to generate aj-synthetics with true synthetic flag
In a number of cases tools are getting confused over generated aj members that are "aj-synthetic" but not marked with the synthetic attribute (because in the past, this has upset other tools). The most recent example was a JAXB posting on the list - by having a perthis() clause in an aspect that matched a type with JAX...
2006-06-19 08:15:25
1,150,720,000
resolved fixed
c9f311a
1,151,150,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AdviceDeclaration.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/DeclareDeclaration.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/PointcutDeclaration.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/c...
AspectJ
208
148,007
Bug 148007 boolean methods with after advice return incorrect result on JRockit under WLS
null
2006-06-21 05:27:01
1,150,880,000
resolved fixed
426cbdc
1,150,950,000
tests/bugs152/pr148007/purejava/test/BooleanUnitTest.java tests/bugs152/pr148007/purejava/test/LoggingAspect.java tests/bugs152/pr148007/test/BooleanUnitTest.java tests/bugs152/pr148007/test/TestServlet.java tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java weaver/src/org/aspectj/weaver/bcel/BcelShadow.java weav...
AspectJ
209
147,801
Bug 147801 java.lang.ClassFormatError: Repetitive method name/signature
I get a ClassFormatError trying to perform runtime-weaving on a DB2 class. The class being woven is COM.ibm.db2.jdbc.app.DB2PreparedStatement. The full message exception is: java.lang.ClassFormatError: Repetitive method name/signature in class file COM/ibm/db2/jdbc/app/DB2PreparedStatement. In examining the post-weave ...
2006-06-19 18:07:26
1,150,750,000
resolved fixed
13dde4e
1,150,890,000
tests/bugs152/pr147801/Foo.java tests/bugs152/pr147801/PreparedStatement.java tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java weaver/src/org/aspectj/weaver/World.java weaver/src/org/aspectj/weaver/bcel/BcelClassWeaver.java
AspectJ
210
147,845
Bug 147845 Generic abstract aspect hierarchies 3 deep or higher can fail when type parameters have bounds
The program below should compile happily, but fails with: [error] Type B does not meet the specification for type parameter 1 (A extends MyBase) in generic type Base abstract aspect Middle<B extends MyBase> extends Base<B> {} ^^^^^ The test program: ------------------ interface MyBase {}; interface MyMarker extends MyB...
2006-06-20 06:16:42
1,150,800,000
resolved fixed
791f8a7
1,150,800,000
tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java weaver/src/org/aspectj/weaver/TypeVariable.java
AspectJ
211
136,707
Bug 136707 iajc should print summary like javac
The iajc ant task should produce a summary of what it is doing, like the javac task does: [javac] Compiling 189 source files to C:\project\classes
2006-04-13 14:23:22
1,144,950,000
resolved fixed
008efca
1,150,230,000
taskdefs/src/org/aspectj/tools/ant/taskdefs/AjcTask.java taskdefs/testsrc/org/aspectj/tools/ant/taskdefs/AjcTaskTest.java
AspectJ
212
146,546
Bug 146546 Remove hard coded dependency on "|" in getFileName(..) methods
null
2006-06-12 07:59:26
1,150,110,000
resolved fixed
38cc0dd
1,150,120,000
asm/src/org/aspectj/asm/AsmManager.java asm/src/org/aspectj/asm/internal/AspectJElementHierarchy.java
AspectJ
213
122,580
Bug 122580 Fix & Bug: Circularity Failure for Verbose Loading on JRockit 1.4.2_08 Agent
Here is a stack trace I am getting when I try to use AspectJ 1.5.0 final release's load-time weaving with JRockIt 1.4.2_08 using -Xmanagement:class=org.aspectj.weaver.loadtime.JRockitAgent to load Weblogic Server 8.1 SP2. I debugged the code in Eclipse and discovered that the weaver was being initialized while loading ...
2006-01-03 20:19:46
1,136,340,000
resolved fixed
75afb31
1,149,850,000
loadtime/src/org/aspectj/weaver/loadtime/Aj.java loadtime/src/org/aspectj/weaver/loadtime/JRockitAgent.java loadtime/testsrc/LoadtimeModuleTests.java loadtime/testsrc/org/aspectj/bea/jvm/ClassLibraryImpl.java loadtime/testsrc/org/aspectj/bea/jvm/JVMImpl.java loadtime/testsrc/org/aspectj/weaver/loadtime/JRockitAgentTest...
AspectJ
214
145,322
Bug 145322 Failure of testCompareSubclassDelegates() on J9 1.5.0 SR1
null
2006-06-05 08:12:02
1,149,510,000
resolved fixed
3e0650d
1,149,580,000
weaver/testsrc/org/aspectj/weaver/reflect/ReflectionBasedReferenceTypeDelegateTest.java
AspectJ
215
145,086
Bug 145086 NPE when weak reference set in signature
Simon ran into the same problem in setting the values. I will attach a patch to fix this, with test cases to properly verify it works in both cases. java.lang.NullPointerException at org.aspectj.runtime.reflect.SignatureImpl$CacheImpl.set(SignatureImpl.java:224) at org.aspectj.runtime.reflect.SignatureImpl.toString(Sig...
2006-06-02 11:35:11
1,149,260,000
resolved fixed
f821ca3
1,149,320,000
runtime/src/org/aspectj/runtime/reflect/SignatureImpl.java runtime/testsrc/org/aspectj/runtime/reflect/JoinPointImplTest.java runtime/testsrc/org/aspectj/runtime/reflect/SignatureTest.java
AspectJ
216
132,591
Bug 132591 Duplicate exception with aop.xml file on aspectpath
null
2006-03-20 15:51:21
1,142,890,000
resolved fixed
319a0d1
1,149,250,000
ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java ajde/testsrc/org/aspectj/ajde/OutxmlTest.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java
AspectJ
217
120,739
Bug 120739 LTW Optimization: Disable World if it has No Aspects
This optimization disables weaving for a ClassLoader where there are no aspects defined. This is actually useful if you have aspect exclusions that exclude all the aspects defined in a parent class loader. It is also helpful in the trivial/rare case where there is an aop.xml definition with no aspect definitions.
2005-12-13 16:10:55
1,134,510,000
resolved fixed
4513e92
1,149,180,000
loadtime/src/org/aspectj/weaver/loadtime/ClassLoaderWeavingAdaptor.java tests/java5/ataspectj/ataspectj/ltwreweavable/EmptyAtAspect.java tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java
AspectJ
218
144,717
Bug 144717 org.aspectj.weaver.BCException: Do not call nameToSignature with something that looks like a signature (descriptor): '[Ljava.lang.String;'
The exception below is produced when parsing a pointcut that uses an array type in args using the reflection world pointcut parser support. org.aspectj.weaver.BCException: Do not call nameToSignature with something that looks like a signature (descriptor): '[Ljava.lang.String;' at org.aspectj.weaver.UnresolvedType.name...
2006-05-31 12:43:19
1,149,090,000
resolved fixed
97cd71a
1,149,100,000
weaver/src/org/aspectj/weaver/tools/PointcutParser.java weaver5/java5-src/org/aspectj/weaver/reflect/Java15ReflectionBasedReferenceTypeDelegate.java weaver5/java5-testsrc/org/aspectj/weaver/tools/Java15PointcutExpressionTest.java
AspectJ
219
143,930
Bug 143930 create constructor ipe in same was as method ipes
null
2006-05-26 07:12:00
1,148,640,000
resolved fixed
26a8a86
1,148,980,000
ajdoc/testsrc/org/aspectj/tools/ajdoc/CoverageTestCase.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmElementFormatter.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java tests/src/org/aspectj/s...
AspectJ
220
142,466
Bug 142466 [ltw] Fail at runtime if abstract methods are not implemented in a hierarchy that finishes with an XML aspect
see pr125480 - copying the test for that will be a good basis for a test for this bug. We don't check that when defining a concrete aspect there are no unimplemented abstract methods in the aspect we are concretizing.
2006-05-18 07:32:08
1,147,950,000
resolved fixed
69e24e9
1,148,370,000
loadtime/src/org/aspectj/weaver/loadtime/ConcreteAspectCodeGen.java tests/bugs152/pr142466/AtAspectTestConcreteMethods.java tests/bugs152/pr142466/HelloWorld.java tests/bugs152/pr142466/case2/AtAspectTestConcreteMethods.java tests/bugs152/pr142466/case2/HelloWorld.java tests/src/org/aspectj/systemtest/ajc152/Ajc152Test...
AspectJ
221
138,223
Bug 138223 Compiler crash on two binding @xxx pcds in one compound expression
junit.framework.AssertionFailedError: test "Double at annotation matching (no binding)" failed test "Double at annotation matching (no binding)" failed Unexpected warning messages: warning at before() : transactionalOperation() { ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /private/tmp/ajcSandbox/ajcTest18924.tmp/DoubleAnnotatio...
2006-04-24 13:17:07
1,145,900,000
resolved fixed
6b2d9ae
1,147,880,000
tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java weaver/src/org/aspectj/weaver/patterns/AnnotationPointcut.java
AspectJ
222
141,956
Bug 141956 Null Pointer Exception when trying to skip Parent Mungers.
I don't know much about the internal workings of aspectJ but this bug keeps popping up so I went through the trouble of checking of trying to debug it so that I could hopefully provide enough information to get it fixed. This happens while using eclipse AJDT. It never happens if I fully do a clean before rebuild. It on...
2006-05-16 05:12:06
1,147,770,000
resolved fixed
5f6a6b1
1,147,870,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseFactory.java tests/multiIncremental/PR141956/base/A.java tests/multiIncremental/PR141956/base/C.java tests/multiIncremental/PR141956/inc1/C.java tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java weaver/src/org/...
AspectJ
223
130,722
Bug 130722 poincut references in percflow instantiation model aspects can not be resolved
Take these two aspects and this litte class: // source1 package test1; import test.Test; public aspect PointcutProvider { public pointcut test(): execution(* Test.*(..)); } // source2 package test; import test1.PointcutProvider; public aspect PointcutConsumer percflow(flow()) { // compiler issues the following line wit...
2006-03-07 05:53:19
1,141,730,000
resolved fixed
b166a7e
1,147,790,000
tests/bugs152/pr130722/test/Test.java tests/src/org/aspectj/systemtest/ajc150/GenericITDsDesign.java tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java weaver/src/org/aspectj/weaver/CrosscuttingMembers.java weaver/src/org/aspectj/weaver/CrosscuttingMembersSet.java weaver/src/org/aspectj/weaver/ResolvedType.java w...
AspectJ
224
141,945
Bug 141945 Compiler issues message concerning aop.xml even when not doing LTW
From the mailing list: ============= I am executing the command as below, COMMAND: ajc -inpath woven_hello1.jar -aspectpath aspect2.jar -outjar woven_hello2.jar I am getting same old error, woven_hello1.jar [error] aspect 'aspect1' woven into 'Hello' must be declared in an aop.xml file. (no source information available...
2006-05-16 04:10:25
1,147,770,000
resolved fixed
fc7db25
1,147,780,000
tests/java5/ataspectj/ataspectj/ltwreweavable/MainReweavableLogging.java
AspectJ
225
135,068
Bug 135068 VerifyError with LTW and @AJ style aspects
I get "VerifyError: Incompatible object argument for function call" error when using LTW with @Aspect stype aspects. Interestingly enough, LTW works as expected with equivalent .aj style aspect. Compile time weaving works with both aspect styles. Tested on Linux with AspectJ 1.5.0, 1.5.1 and DEVELOPMENT-20060404163823 ...
2006-04-05 12:15:45
1,144,250,000
resolved fixed
9ffc63b
1,147,770,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/ValidateAtAspectJAnnotationsVisitor.java tests/bugs152/pr135068/A.java tests/bugs152/pr135068/Ajava.java tests/bugs152/pr135068/Ajava2.java tests/bugs152/pr135068/C.java tests/bugs152/pr135068/C2.java tests/bugs152/pr135068/t/Ajava.java tests/bugs152/pr13...
AspectJ
226
133,117
Bug 133117 Lots of warnings with noGuardForLazyTjp
When the noGuardForLazyTjp compiler option is set to warning or error and a piece of advice causes this warning to show up, you get one warning for every join point matched by the advice. I think just one would probably be enough...
2006-03-24 04:47:58
1,143,190,000
resolved fixed
3fa4d24
1,147,450,000
tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java weaver/src/org/aspectj/weaver/Lint.java weaver/src/org/aspectj/weaver/bcel/BcelAdvice.java
AspectJ
227
129,704
Bug 129704 BCException
org.aspectj.weaver.BCException at org.aspectj.weaver.bcel.BcelShadow.initializeKindedAnnotationVars(BcelShadow.java:1553) at org.aspectj.weaver.bcel.BcelShadow.getKindedAnnotationVar(BcelShadow.java:995) at org.aspectj.weaver.patterns.AnnotationPointcut.findResidueInternal(AnnotationPointcut.java:196) at org.aspectj.we...
2006-02-27 20:32:19
1,141,090,000
resolved fixed
3ca976f
1,147,430,000
tests/bugs152/pr129704/A.java tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java weaver/src/org/aspectj/weaver/bcel/BcelShadow.java
AspectJ
228
138,384
Bug 138384 java.lang.ClassFormatError: Invalid method Code length 83071 in class file org/eclipse/jdt/internal/compiler/impl/Constant
null
2006-04-25 10:58:41
1,145,980,000
resolved fixed
5d2b5b8
1,147,420,000
bcel-builder/src/org/aspectj/apache/bcel/generic/InstructionList.java tests/bugs152/pr138384/BigMethod.java tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java
AspectJ
229
140,357
Bug 140357 NPE or StackOverflow when resolving reference pointcut in ReflectionWorld
Given a type such as : private static class NamedPointcutResolution { @Pointcut("execution(* *(..))") public void a() {} @Pointcut("this(org.aspectj.weaver.tools.Java15PointcutExpressionTest.A)") public void b() {} @Pointcut("a() && b()") public void c() {} } The reflection based delegate is unable to resolve the point...
2006-05-05 09:43:03
1,146,840,000
resolved fixed
b954b26
1,146,840,000
weaver/src/org/aspectj/weaver/tools/PointcutParser.java weaver5/java5-src/org/aspectj/weaver/reflect/DeferredResolvedPointcutDefinition.java weaver5/java5-src/org/aspectj/weaver/reflect/InternalUseOnlyPointcutParser.java weaver5/java5-src/org/aspectj/weaver/reflect/Java15ReflectionBasedReferenceTypeDelegate.java weaver...
AspectJ
230
134,371
Bug 134371 ClassCastException in AjState.recordClassFile()
I got this exception while working on a static inner aspect. A full rebuild avoided the problem. java.lang.ClassCastException: org.aspectj.weaver.MissingResolvedTypeWithKnownSignature at org.aspectj.ajdt.internal.core.builder.AjState.recordClassFile(AjState.java:774) at org.aspectj.ajdt.internal.core.builder.AjState.no...
2006-04-01 12:05:56
1,143,910,000
resolved fixed
299c3a4
1,146,820,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AspectDeclaration.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseFactory.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectInc...
AspectJ
231
135,780
Bug 135780 Java 1.2 dependency in aspectjrt.jar bug with fix
null
2006-04-09 22:27:37
1,144,640,000
resolved fixed
cb5dfe7
1,146,670,000
runtime/src/org/aspectj/runtime/reflect/SignatureImpl.java
AspectJ
232
138,798
Bug 138798 BCException on invalid annotation match
This unfortunately invalid code: before(Throwable throwable, NormalException normalException) : handler(*) && args(throwable) && @withincode(normalException) { ... Generates this exception in AJDT with post-1.5.1a AspectJ org.aspectj.weaver.BCException at org.aspectj.weaver.bcel.BcelRenderer.visit(BcelRenderer.java:237...
2006-04-26 20:53:07
1,146,100,000
resolved fixed
c5c18aa
1,146,120,000
tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java
AspectJ
233
138,286
Bug 138286 perthis() causes ClassCastException
When using perthis() with an aspect, I see the following Internal Compiler AJDT 1.3.1 / AspectJ 1.5.1a Build 20060406092046 Eclipse 3.1.2, Windows XP, JDK 1.5 Error: java.lang.ClassCastException at org.aspectj.weaver.patterns.PerThisOrTargetPointcutVisitor.getPerTypePointcut(PerThisOrTargetPointcutVisitor.java:41) at o...
2006-04-24 18:29:34
1,145,920,000
resolved fixed
c667bcb
1,146,070,000
tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java weaver/src/org/aspectj/weaver/patterns/PerThisOrTargetPointcutVisitor.java
AspectJ
234
138,540
Bug 138540 Patch to add support for -Xset: options
I needed to add X="set:activateLightweightDelegates=false to my ant build configuration, to troubleshoot the out of memory permgen condition. However, the ant task support doesn't currently support adding the new -Xset style options Andy added. Here is a small patch to pass any -Xset: options through, that worked for m...
2006-04-25 20:18:31
1,146,010,000
resolved fixed
99882cb
1,146,040,000
taskdefs/src/org/aspectj/tools/ant/taskdefs/AjcTask.java
AspectJ
235
136,585
Bug 136585 NullPointerException in PerObjectInterfaceTypeMunger.java:33
AspectJ 1.5.1a + AJDT 1.4.0-dev on Eclipse 3.2M6 Using the Sapcewar example, open Game.java and add: public void foo() {} save and an incremental build will fail with: java.lang.NullPointerException at org.aspectj.weaver.PerObjectInterfaceTypeMunger.equals(PerObjectInterfaceTypeMunger.java:33) at org.aspectj.weaver.bce...
2006-04-13 05:38:44
1,144,920,000
resolved fixed
1535ee7
1,145,450,000
tests/multiIncremental/PR136585/base/Hello.java tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java weaver/src/org/aspectj/weaver/PerObjectInterfaceTypeMunger.java
AspectJ
236
136,665
Bug 136665 Bug: ajc fails on missing classpath entries with fix
[iajc] error at (no source information available) [iajc] File.aj:0::0 Internal compiler error [iajc] org.aspectj.weaver.BCException: Can't open archive: missingjar [iajc] when resolving types defined in compilation unit File.aj [iajc] when processing compilation unit File.aj [iajc] when batch building BuildConfig[null]...
2006-04-13 11:34:02
1,144,940,000
resolved fixed
d1a252e
1,145,360,000
weaver/src/org/aspectj/weaver/bcel/ClassPathManager.java
AspectJ
237
135,001
Bug 135001 NPE at at org.aspectj.weaver.bcel.BcelShadow.weaveAroundInline
java.lang.NullPointerException at org.aspectj.weaver.bcel.BcelShadow.weaveAroundInline(BcelShadow.java:2109) at org.aspectj.weaver.bcel.BcelAdvice.implementOn(BcelAdvice.java:232) at org.aspectj.weaver.Shadow.implementMungers(Shadow.java:639) at org.aspectj.weaver.Shadow.implement(Shadow.java:456) at org.aspectj.weaver...
2006-04-05 07:10:58
1,144,240,000
resolved fixed
1a6f695
1,144,320,000
tests/bugs152/pr135001/AbstractAspect.java tests/bugs152/pr135001/ConcreteAspect.java tests/bugs152/pr135001/Foo.java tests/src/org/aspectj/systemtest/AllTests15.java tests/src/org/aspectj/systemtest/ajc152/Ajc152Tests.java tests/src/org/aspectj/systemtest/ajc152/AllTestsAspectJ152.java weaver/src/org/aspectj/weaver/bc...
AspectJ
238
134,541
Bug 134541 adviceDidNotMatch's line number doesn't keep up with line number of advice
When advice doesn't match in a 1.5.0 enabled project, there is an adviceDidNotMatch warning against the line number of the advice. If you insert a line before this advice and save then the warning stays associated with the original line and not the new one. Full building puts the warning against the new line. This is a...
2006-04-03 12:03:09
1,144,080,000
resolved fixed
94d8b82
1,144,320,000
tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java weaver/src/org/aspectj/weaver/CrosscuttingMembers.java weaver/src/org/aspectj/weaver/CrosscuttingMembersSet.java
AspectJ
239
130,837
Bug 130837 Exception while trying to edit Annotation based Aspect Class (normal Java class)
java.lang.NullPointerException at org.aspectj.ajdt.internal.compiler.ast.ValidateAtAspectJAnnotationsVisitor.buildFormalAdviceBindingsFrom(ValidateAtAspectJAnnotationsVisitor.java:417) at org.aspectj.ajdt.internal.compiler.ast.ValidateAtAspectJAnnotationsVisitor.resolveAndSetPointcut(ValidateAtAspectJAnnotationsVisitor...
2006-03-07 19:52:08
1,141,780,000
resolved fixed
41f1f3a
1,143,530,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/ValidateAtAspectJAnnotationsVisitor.java
AspectJ
240
132,087
Bug 132087 NPE from unbound variable in advice
I get this error from having an unbound reference to a variable in an aspect. See attached AJDT project for an example. java.lang.NullPointerException at org.aspectj.ajdt.internal.core.builder.AsmHierarchyBuilder.visit(AsmHierarchyBuilder.java:412) at org.aspectj.org.eclipse.jdt.internal.compiler.ast.MethodDeclaration....
2006-03-15 23:56:13
1,142,480,000
resolved fixed
fa2ed1b
1,143,500,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java
AspectJ
241
132,160
Bug 132160 NPE in SingleTypeReference
I was C&P'ing the guts of another aspect into a new file (from another project that I'm porting over). There are a number of errors in the aspect (as most of the references point to the other project). I just changed an object from one type (in the other project) to a type in the project that the file is in. Eclipse SD...
2006-03-16 09:52:40
1,142,520,000
resolved fixed
91473b3
1,143,490,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmElementFormatter.java
AspectJ
242
133,307
Bug 133307 declare parents implementing generic interface referencing same type
I have the following construct: public interface TestIF<T extends TestIF> {} public class TestClass {} public aspect TestAspect { declare parents: TestClass implements TestIF<TestClass>; } The later aspect does not compile, although public class TestClass implements TestIF<TestClass> { } is a valid class.
2006-03-26 21:05:35
1,143,430,000
resolved fixed
c9a60e5
1,143,470,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/AjLookupEnvironment.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java weaver/src/org/aspectj/weaver/CrosscuttingMembersSet.java weaver/src/org/aspectj/weaver/patterns/IVerificationRequired.java weaver/src/org/aspectj/weaver/patterns/WildTyp...
AspectJ
243
132,926
Bug 132926 Compiler crashes processing annotations
Just upgraded to latest AJDT (Version: 1.3.1, Build id: 20060322082516 AspectJ version: 1.5.1.20060320075953) and the compiler crashed while rebulding the project (which used to work fine using using the March 16th version). Retrying with 'clean' build produced the same crash. java.lang.NullPointerException at org.aspe...
2006-03-22 20:05:02
1,143,080,000
resolved fixed
2fb86fe
1,143,200,000
tests/bugs151/Deca/DecA.java tests/bugs151/pr132926/AffectedType.java tests/bugs151/pr132926/InputAnnotation.java tests/bugs151/pr132926/InputAnnotation2.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java weaver/src/org/aspectj/weaver/AnnotationX.java
AspectJ
244
132,130
Bug 132130 Missing relationship for declare @method when annotating a co-located method
For this program (when all entered into *one* file) I don't see a marker from the declare to the annotated method. If the annotated method is in another file, I do... (not sure if fields/ctors/types are also a problem..) public aspect basic { declare @method: * debit(..): @Secured(role="supervisor"); } class BankAccoun...
2006-03-16 06:24:40
1,142,510,000
resolved fixed
9dca72e
1,142,610,000
ajde/testsrc/org/aspectj/ajde/AsmDeclarationsTest.java ajde/testsrc/org/aspectj/ajde/AsmRelationshipsTest.java ajdoc/testsrc/org/aspectj/tools/ajdoc/CoverageTestCase.java asm/src/org/aspectj/asm/internal/ProgramElement.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
AspectJ
245
131,932
Bug 131932 structure model bug: generic method ITD
import java.util.List; public aspect Slide74 { public X Bar<X>.getFirst() { return lts.get(0); } static class Bar<T> { List<T> lts; } } in AJDT, this program incorrectly shows the relationship from the TYPE to the Bar class rather than from the ITD to the Bar class.
2006-03-15 09:45:01
1,142,430,000
resolved fixed
e2703cf
1,142,520,000
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java weaver/src/org/aspectj/weaver/NewConstructorTypeMunger.java weaver/src/org/aspectj/weaver/NewFieldTypeMunger.java weaver/src/org/aspectj/weaver/NewMethodTypeMunger.java
AspectJ
246
131,933
Bug 131933 grotty ClassCastException on referring to pointcut in generic type
import java.util.List; public aspect Slide71 { before(): GenericType<String>.foo() {} before(): GenericType<MyList>.foo() {} //before(): GenericType.foo() {} } class GenericType<T> { public pointcut foo(): execution(* T.*(..)); } that programs gives: (because MyList is not a known type) java.lang.ClassCastException at ...
2006-03-15 09:46:31
1,142,430,000
resolved fixed
f2cd94f
1,142,510,000
tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java weaver/src/org/aspectj/weaver/patterns/TypePattern.java
AspectJ
247
131,505
Bug 131505 Generated aop.xml files contain aspects for all the projects ever built
Using the -outxml option in AJDT the generated aop.xml files are not correct after the first build and contain all the aspects that have ever been built (including those in different projects and duplicates if an aspect has been built twice). It seems that there is a global list of aspects (aspectNames in AjBuildManage...
2006-03-13 05:37:45
1,142,250,000
resolved fixed
b3cd01d
1,142,430,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java tests/multiIncremental/PR131505/base/C.java tests/multiIncremental/PR131505/inc2/C.java tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrem...
AspectJ
248
101,411
Bug 101411 SerialVersionUID handling
from emails - needs a decision --------------- Hi Andy is there a way for the weaver to add to weaved classes the serial ver uid field based on the pre-weaved bytecode computation. Right now it issues lint warning when a Serializable class without serial ver uid is encountered and due to evil #75442 this is very annoyi...
2005-06-23 03:47:48
1,119,510,000
resolved fixed
6e6658a
1,141,930,000
bcel-builder/src/org/aspectj/apache/bcel/generic/ClassGen.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/BuildArgParser.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java org.aspectj.ajdt.core...
AspectJ
249
130,300
Bug 130300 Remove, hide or obfuscate -XnoWeave
This option is redundant apart from use in AspectJ development and maintenance. It is confusing to users and is a source new problems for LTW.
2006-03-03 06:27:21
1,141,390,000
verified fixed
b225911
1,141,580,000
ajde/testsrc/org/aspectj/ajde/BuildConfigurationTests.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/BuildArgParser.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/core/AspectJCore.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompilerAdapter.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/in...
AspectJ
250
129,298
Bug 129298 Contribution: Remove Memory Consuming Declared Signature
The code for weaver.Member#getDeclaredSignature() is never used in the weaver. My memory analysis showed this can pin several megabytes of memory in a large system. This patch removes it. YAGNI :-)
2006-02-24 03:45:34
1,140,770,000
resolved fixed
a116142
1,140,780,000
weaver/src/org/aspectj/weaver/JoinPointSignature.java weaver/src/org/aspectj/weaver/Member.java weaver/src/org/aspectj/weaver/MemberImpl.java
AspectJ
251
121,312
Bug 121312 [performance]Contribution: Refactoring to Support LTW World with Reflection Delegates for Bootstrap Types
This patch adds an IReflectionWorld interface, changes the various places in code where casts are made to ReflectionWorld to use that interface, creates some common methods and creates an LTWWorld that implements this interface, and sets up the ClassLoaderWeavingAdaptor to use it. It's important that the LTWWorld have ...
2005-12-17 02:53:28
1,134,810,000
resolved fixed
cafdecb
1,140,690,000
weaver/src/org/aspectj/weaver/ltw/LTWWorld.java weaver/src/org/aspectj/weaver/reflect/IReflectionWorld.java weaver/src/org/aspectj/weaver/reflect/ReflectionBasedReferenceTypeDelegateFactory.java weaver/src/org/aspectj/weaver/reflect/ReflectionShadow.java weaver/src/org/aspectj/weaver/reflect/ReflectionWorld.java weaver...
AspectJ
252
122,742
Bug 122742 [@AspectJ] VerifyError with @AfterThrowing/@AfterReturning and extra JoinPoint argument
If an @AspectJ aspect advises itself using after throwing advice that itself throws an exception running the resulting program causes a VerifyError: java.lang.VerifyError: (class: A, method: stop signature: ()V) catch_type not a subclass of Throwable at java.lang.Class.getDeclaredMethods0(Native Method) at java.lang.Cl...
2006-01-05 06:31:44
1,136,460,000
resolved fixed
3fa1bdd
1,140,540,000
tests/bugs151/pr122742/AfterReturningTest.java tests/bugs151/pr122742/AfterThrowingTest.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java weaver/src/org/aspectj/weaver/Advice.java
AspectJ
253
128,618
Bug 128618 [incremental] XLint warnings in the wrong place with incremental compilation
The zip file I am about to attach contains two AspectJ project, one depending on the other. If you make a small change to MainClass.java in 'Test Project' and save you will see a strange warning in that class - "advice defined in ras.FFDC has not been applied [Xlint:adviceDidNotMatch]". If you do a full build the warni...
2006-02-20 06:36:46
1,140,440,000
resolved fixed
89d66dc
1,140,540,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/WeaverMessageHandler.java tests/multiIncremental/PR128618_2/base/mainpackage/MainClass.java tests/multiIncremental/PR128618_2/inc1/mainpackage/MainClass.java tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
AspectJ
254
128,237
Bug 128237 [@AspectJ] NPE on @AJ code with pointcut which contains logical OR operation.
null
2006-02-16 11:21:26
1,140,110,000
resolved fixed
ba42a09
1,140,540,000
tests/bugs151/pr128237.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java weaver/src/org/aspectj/weaver/bcel/BcelWeaver.java
AspectJ
255
128,744
Bug 128744 LTW doesn't work using JRE1.4 in Eclipse
LTW doesn't work using JRE1.4 in Eclipse now I want to support JRE1.4 when LTW. I defined a aop.xml file in application META-INF path, it works fine using JRE1.4 in command-line, aop.xml file is used when LTW, the command as below: "D:\work\BTM\eclipse 3.1.1\eclipse-SDK-3.1.1-win32\eclipse-1.4.2\jre\bin\java" -classpat...
2006-02-20 23:38:48
1,140,500,000
resolved fixed
7a2087e
1,140,540,000
loadtime/src/org/aspectj/weaver/loadtime/ConcreteAspectCodeGen.java tests/bugs151/pr128744/Hello.java tests/bugs151/pr128744/World.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
AspectJ
256
128,699
Bug 128699 Incorrect error on "declare" statements
The error associated with the declare construct is incorrect. The current message is: "expected one of error, warning, parents, soft, dominates" dominates should be changed to "precendence" and new annotation related declararions should be mentioned. Here is a suggestion: "expected one of error, warning, parents, soft,...
2006-02-20 13:08:17
1,140,460,000
resolved fixed
f95d2c9
1,140,460,000
weaver/src/org/aspectj/weaver/patterns/PatternParser.java
AspectJ
257
123,553
Bug 123553 Can't use named pointcut in advice decl. in generic aspect
When defining a generic aspect with a paramterized PC, using that PC in an advice declaration causes an 'incompatible type' error. Example: public abstract aspect GenericAspect<Par1> { abstract pointcut checkpoint(Par1 par1); // advice declaration causes error after(Par1 par1): checkpoint(par1) {// do something} } Usin...
2006-01-12 00:56:24
1,137,050,000
resolved fixed
1f1ace1
1,140,210,000
tests/bugs151/pr123553/A.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
AspectJ
258
122,370
Bug 122370 [@AspectJ] @DeclareParents/declare parents not equivalent
Adding a setter to the Moody example makes it clear that the annotation style (@DeclareParents) results in different behavior than the classic (declare parents) style. Calling the setter in a "declare parents"-advised object behaves as one would expect. However, calling the setter with a "@DeclareParents"-advised objec...
2005-12-30 00:54:07
1,135,920,000
resolved fixed
e874581
1,140,110,000
tests/bugs151/pr122370/moody/AnnotationMoodImplementor.java tests/bugs151/pr122370/moody/AnnotationMoodIndicator.java tests/bugs151/pr122370/moody/MainClass.java tests/bugs151/pr122370/moody/Mood.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java weaver/src/org/aspectj/weaver/bcel/BcelTypeMunger.java
AspectJ
259
121,616
Bug 121616 [@AspectJ]Lacking import for JoinPoint crahes the compiler
null
2005-12-20 14:58:14
1,135,110,000
resolved fixed
d4219e1
1,140,080,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/ValidateAtAspectJAnnotationsVisitor.java tests/bugs151/pr121616.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
AspectJ
260
119,882
Bug 119882 BCException when deleting a java-source-file
org.aspectj.weaver.BCException at org.aspectj.weaver.bcel.BcelWeaver.weave(BcelWeaver.java:1087) at org.aspectj.ajdt.internal.compiler.AjCompilerAdapter.weave(AjCompilerAdapter.java:300) at org.aspectj.ajdt.internal.compiler.AjCompilerAdapter.afterCompiling(AjCompilerAdapter.java:178) at org.aspectj.ajdt.internal.compi...
2005-12-08 10:53:59
1,134,060,000
resolved fixed
0b39aa5
1,139,830,000
tests/multiIncremental/PR119882/base/src/pack/C1.java tests/multiIncremental/PR119882/base/src/pack/C2.java tests/multiIncremental/PR119882/inc1/src/pack/C1.java tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java weaver/src/org/aspectj/weaver/bcel/BcelWeaver.java
AspectJ
261
120,356
Bug 120356 @AJ decl err/warn does not show cross structure view
Perhaps an issue in the ASM struct for DEOW since cross struct. is empty in AJDT , despite error / warning gutter and message is ok.
2005-12-12 07:07:55
1,134,390,000
resolved fixed
f743fb2
1,139,570,000
tests/bugs151/pr120356/A.java tests/bugs151/pr120356/C.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java weaver/src/org/aspectj/weaver/bcel/AtAjAttributes.java
AspectJ
262
123,212
Bug 123212 Skip subversion resources when copying files from input to output folders
Exception when compile a project under svn. java.io.FileNotFoundException at java.io.FileOutputStream.open(Native Method) at java.io.FileOutputStream.<init>(FileOutputStream.java:179) at java.io.FileOutputStream.<init>(FileOutputStream.java:131) at org.aspectj.util.FileUtil.makeOutputStream(FileUtil.java:1258) at org.a...
2006-01-10 04:12:29
1,136,880,000
resolved fixed
d856e4f
1,139,560,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java
AspectJ
263
125,809
Bug 125809 AjTypeDeclaration in the dom shouldn't have the properties of it's subtype AspectDeclaration
The AjTypeDeclaration should not have the properties 'privileged' and 'perClause' which it's subtype AspectDeclaration has. This was shown up whilst building an aspectj for ajdt and a failure in one of the visitor tests.
2006-01-31 06:23:53
1,138,710,000
resolved fixed
eec4990
1,138,710,000
org.aspectj.ajdt.core/src/org/aspectj/org/eclipse/jdt/core/dom/AjTypeDeclaration.java org.aspectj.ajdt.core/src/org/aspectj/org/eclipse/jdt/core/dom/AspectDeclaration.java org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjASTTest.java
AspectJ
264
125,657
Bug 125657 NullPointerException from BcelShadow.java:1313
From within Eclipse 3.0 (RAD 6.0.1) I get an error with the (partial) details listed below. My aspect looks like this: public aspect AAwtEventDispatcherThreadProtection { pointcut awtComponentMethod(java.awt.Component component): target(component) && call(* *.*(..)); before(java.awt.Component component): awtComponentMe...
2006-01-29 18:45:17
1,138,580,000
resolved wontfix
4934132
1,138,620,000
weaver/src/org/aspectj/weaver/bcel/BcelShadow.java
AspectJ
265
123,901
Bug 123901 NPE in AccessForInlineVisitor.endVisit(AccessForInlineVisitor.java:105)
java.lang.NullPointerException at org.aspectj.ajdt.internal.compiler.ast.AccessForInlineVisitor.endVisit(AccessForInlineVisitor.java:105) at org.aspectj.org.eclipse.jdt.internal.compiler.ast.QualifiedNameReference.traverse(QualifiedNameReference.java(Compiled Code)) at org.aspectj.org.eclipse.jdt.internal.compiler.ast....
2006-01-15 08:39:40
1,137,330,000
resolved fixed
693945f
1,138,530,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AccessForInlineVisitor.java tests/bugs151/pr123901/A.java tests/bugs151/pr123901/B.java tests/bugs151/pr125475/TestEmptyPointcutAtAspect.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
AspectJ
266
121,395
Bug 121395 invalid aspectj path throws filenotfoundexception
An invalid aspectj path (missing jar file) throws an filenotfoundexception: java.io.FileNotFoundException at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(FileInputStream.java:106) at org.aspectj.weaver.bcel.BcelWeaver.addAspectsFromJarFile(BcelWeaver.java:202) at org.aspectj.weaver.bcel...
2005-12-19 06:28:40
1,134,990,000
resolved fixed
551b446
1,138,370,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
AspectJ
267
125,295
Bug 125295 fix for bug 58520 caused AJDT test failures
null
2006-01-26 04:12:48
1,138,270,000
resolved fixed
7e40a60
1,138,290,000
asm/src/org/aspectj/asm/IProgramElement.java asm/src/org/aspectj/asm/internal/ProgramElement.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmElementFormatter.java tests/bugs151/pr125295/pkg/C.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
AspectJ
268
125,101
Bug 125101 StackOverFlow in ReferenceType.isAssignableFrom()
Hi. I am weaving two aspects into a jar file "jar-to-jar". ajc 1.5.0 gives me a huge error message (see attachement). Would be great if I could get any recommendations on this. Thanks! Eric
2006-01-24 19:40:36
1,138,150,000
resolved fixed
efb20c5
1,138,210,000
weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
AspectJ
269
124,999
Bug 124999 [generics] Incorrect call to generic inherited method in around advice
null
2006-01-24 08:41:13
1,138,110,000
resolved fixed
a4bd19d
1,138,120,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AccessForInlineVisitor.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java
AspectJ
270
124,399
Bug 124399 AJDT AspectJ Internal Compiler Error
In Eclipse 3.1.1 with AJDT 1.3 (the December 20th 2005 release) I got this message in an error dialog: org.aspectj.weaver.BCException at org.aspectj.weaver.bcel.LazyClassGen.getLazyMethodGen(LazyClassGen.java:1216) at org.aspectj.weaver.bcel.LazyClassGen.getLazyMethodGen(LazyClassGen.java:1201) at org.aspectj.weaver.bc...
2006-01-18 16:59:18
1,137,620,000
resolved fixed
d916002
1,138,100,000
tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java
AspectJ
271
124,654
Bug 124654 Capture method annotation in generic aspect does not compile
null
2006-01-20 10:32:07
1,137,770,000
resolved fixed
28f8c69
1,138,030,000
tests/bugs151/pr124654/GenericAnnotation.java tests/bugs151/pr124654/TestSubAspect.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java weaver/src/org/aspectj/weaver/patterns/ReferencePointcut.java
AspectJ
272
124,808
Bug 124808 [generics] detecting field-get of field of parameterized type.
Hi, Here is the second generics issue: Java code: ========== public class Test<T extends Integer> { Set<T> ints = new HashSet<T>(); public Set<T> foo() { return ints; } public static void main(String[] args) { Test<Integer> t = new Test<Integer>(); Set<Integer> ints = t.foo(); } } Aspect: ======= public privileged aspe...
2006-01-22 11:12:27
1,137,950,000
resolved fixed
01a8b2e
1,138,030,000
tests/bugs151/pr124808/Test.java tests/bugs151/pr124808/TestAspect.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java weaver/src/org/aspectj/weaver/patterns/ExactTypePattern.java weaver/src/org/aspectj/weaver/patterns/TypePattern.java
AspectJ
273
124,803
Bug 124803 [generics] mixing and matching numbers of type variables/parameters in a hierarchy
Hi guys! I didn't talk to you for a while, but I've found several new issues related to generics. Here is the first and the most annoying one: 1) Just compile the testcase with iajc and you will get "java.lang.IllegalStateException: Wrong number of type parameters supplied" Java Code: ========= public interface Generic...
2006-01-22 09:50:51
1,137,940,000
resolved fixed
8676df9
1,138,010,000
tests/bugs151/pr124803/Test.java tests/bugs151/pr124803/Test2.java tests/bugs151/pr124803/TestAspect.java tests/bugs151/pr124803/TestAspect2.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java weaver/src/org/aspectj/weaver/ReferenceType.java
AspectJ
274
122,347
Bug 122347 Contribution: Memory Efficient Expendable Type Map
Here is a patch for a single file (weaver/src/org/aspectj/weaver/World) that significantly improves the memory footprint of weaves (see details below). I would like help in resolving the one bug that this hit in the AspectJ weaver tests. It does the following: * Keeps Weak References to the values in the expendable map...
2005-12-29 18:49:19
1,135,900,000
resolved wontfix
04067a6
1,137,610,000
weaver/src/org/aspectj/weaver/World.java weaver/src/org/aspectj/weaver/bcel/BcelWorld.java
AspectJ
275
123,612
Bug 123612 ArrayIndexOutOfBoundsException with incremental and declare @type
Given the following code: ------------------------------------------------- public aspect A { declare @type : C : @MyAnnotation; } @interface MyAnnotation { } class C { } ------------------------------------------------- if you comment out the declare @type statement and do an incremental build, then the following Arra...
2006-01-12 11:08:45
1,137,080,000
resolved fixed
ab2f89b
1,137,510,000
tests/src/org/aspectj/systemtest/incremental/tools/MultiProjectIncrementalTests.java weaver/src/org/aspectj/weaver/CrosscuttingMembersSet.java
AspectJ
276
58,524
Bug 58524 ajdoc should not use the Declaration and SymbolManager classes
In order to speed up porting porting to the old HTML generation code ajdoc continues to use the following classes: org.aspectj.tools.ajdoc.Declaration org.aspectj.tools.ajdoc.SymbolManager These funtion only as a wrapper to the ASM, and are not needed. The next refactoring effort should get rid of them (and all those s...
2004-04-14 13:42:37
1,081,960,000
resolved fixed
f4c8bf9
1,137,430,000
ajdoc/src/org/aspectj/tools/ajdoc/Declaration.java ajdoc/src/org/aspectj/tools/ajdoc/HtmlDecorator.java ajdoc/src/org/aspectj/tools/ajdoc/Main.java ajdoc/src/org/aspectj/tools/ajdoc/StubFileGenerator.java ajdoc/src/org/aspectj/tools/ajdoc/SymbolManager.java
AspectJ
277
122,248
Bug 122248 BUG for ajdt_1.3_for_eclipse_3.1.zip
Hi !! I use ajdt_1.3_for_eclipse_3.1.zip with eclipse 3.1.1 and fick this error when the eclipse try to make the workbrench: java.lang.IllegalStateException at org.aspectj.weaver.TypeFactory.createParameterizedType(TypeFactory.java:42) at org.aspectj.weaver.bcel.BcelGenericSignatureToTypeXConverter.classTypeSignature2T...
2005-12-28 09:35:06
1,135,780,000
resolved fixed
3f77e75
1,137,360,000
weaver/src/org/aspectj/weaver/bcel/BcelField.java weaver/src/org/aspectj/weaver/bcel/BcelMethod.java weaver/src/org/aspectj/weaver/bcel/BcelObjectType.java weaver/testsrc/org/aspectj/weaver/MemberTestCase15.java
AspectJ
278
122,417
Bug 122417 [waiting-on-website-doc-refresh] Typo in org.aspectj.lang.JoinPoint String constant symbolic name
Methinks the n_a_m_e of the preinitialization constant is misspelled JoinPoint.PREINTIALIZATION is lacking an "I" between the N and the T JoinPoint.PREINITIALIZATION might be the correct version Note: The value of the constant ("preinitialization") is spelled correctly. Sorry for the inconvenience. Harald
2005-12-31 05:11:31
1,136,020,000
resolved fixed
a9ef1b0
1,136,910,000
runtime/src/org/aspectj/lang/JoinPoint.java weaver/src/org/aspectj/weaver/Shadow.java
AspectJ
279
122,458
Bug 122458 java.lang.StringIndexOutOfBoundsException when compiling (build no.: 20051220093604)
This exception occurs using the ajdt eclipse plugin when compiling a project the first time I add the ajdt nature. There are no aspects defined in the project. I suppose the exception occurs when compiling a class (sorry I can't post the entire source code) with this signature: public class FixedWidthParser<T> extends ...
2006-01-02 12:16:49
1,136,220,000
resolved fixed
24a785f
1,136,890,000
weaver/src/org/aspectj/weaver/TypeFactory.java
AspectJ
280
112,458
Bug 112458 Property Editor still shows the properties of layout items when switch to Master page viewer.
Description: Property Editor still shows the properties of layout items when switch to Master page viewer. Steps to reproduce: 1. New a report and insert a label. 2. Select the label.(Property Editor shows label's properties) 3. Switch to Master Page. Expected result: Property Editor changs to reflect Master Page prope...
2005-10-13 07:31:44
1,129,200,000
closed fixed
53284da
1,136,890,000
tests/src/org/aspectj/systemtest/AllTests15.java tests/src/org/aspectj/systemtest/ajc150/AllTestsAspectJ150.java tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java tests/src/org/aspectj/systemtest/ajc151/AllTestsAspectJ151.java weaver/src/org/aspectj/weaver/TypeFactory.java
AspectJ
281
122,728
Bug 122728 ajdoc crashes
null
2006-01-05 03:21:00
1,136,450,000
resolved fixed
d69ce9a
1,136,810,000
ajdoc/src/org/aspectj/tools/ajdoc/StubFileGenerator.java ajdoc/testdata/pr122728/src/pack/ClassWithInnerEnum.java ajdoc/testdata/pr122728/src/pack/EnumWithMethods.java ajdoc/testdata/pr122728/src/pack/MyEnum.java ajdoc/testsrc/org/aspectj/tools/ajdoc/AjdocTests.java ajdoc/testsrc/org/aspectj/tools/ajdoc/EnumTest.java
AspectJ
282
121,385
Bug 121385 around advice does not work when LTW
I defined a aop.xml and a aspect, I have already copy aspectjweaver.jar D:\work\BTM\lib\aspectjweaver.jar, and added -javaagent:D:\work\BTM\lib\aspectjweaver.jar option to the JVM in Eclipse, it works fine if there are before and after advice in aspect, but it will be wrong once I used around advice. if I use compile-t...
2005-12-19 05:32:32
1,134,990,000
resolved fixed
a778ac4
1,135,190,000
tests/bugs150/pr121385/A.java tests/bugs150/pr121385/Hello.java tests/bugs150/pr121385/WorldAt.java tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java weaver/src/org/aspectj/weaver/bcel/BcelAdvice.java weaver/src/org/aspectj/weaver/bcel/BcelShadow.java
AspectJ
283
58,520
Bug 58520 ajdoc doesn't navigate to target details in some cases
When a file is advised, javadoc uses the following naming convention for setting its "A NAME": convertCheckedException(java.lang.Throwable) However, ajdoc uses the unqualified name for the argument, resuting in the follwing in-file anchor link: <class-name>.html#convertCheckedException(Throwable) Which fails to navigat...
2004-04-14 13:29:14
1,081,960,000
resolved fixed
bbdd496
1,135,160,000
ajdoc/testdata/pr119453/src/pack/C.java ajdoc/testsrc/org/aspectj/tools/ajdoc/AjdocTests.java ajdoc/testsrc/org/aspectj/tools/ajdoc/FullyQualifiedArgumentTest.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmElementFormatter.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/A...
AspectJ
284
120,909
Bug 120909 Test failures using IBM Java 5
1. ReflectionBasedReferenceTypeDelegateTest.testCompareSubclassDelegates() junit.framework.AssertionFailedError: Errors:Couldn't find void java.util.HashMap.onEntry() in the bcel set Couldn't find void java.util.HashMap.onExit() in the bcel set Couldn't find void java.util.HashMap.transfer0(java.util.HashMap$Entry[]) i...
2005-12-14 11:58:04
1,134,580,000
resolved fixed
9abfc40
1,134,660,000
loadtime/src/org/aspectj/weaver/loadtime/DefaultWeavingContext.java weaver/src/org/aspectj/weaver/reflect/ReflectionWorld.java weaver/testsrc/org/aspectj/weaver/reflect/ReflectionBasedReferenceTypeDelegateTest.java weaver/testsrc/org/aspectj/weaver/reflect/ReflectionWorldTest.java
AspectJ
285
120,743
Bug 120743 Improvements to define new server wizard page
On the panel where the server location and button to install the server is shown, a couple of usability improvements could be made... (1) If I choose browse and choose a location. Then hit install server, the fs browser should not be brought back up since I have already hitten browse and selected a location. (2) If (1)...
2005-12-13 16:15:50
1,134,510,000
closed wontfix
588e7b9
1,134,510,000
loadtime/src/org/aspectj/weaver/loadtime/Aj.java
AspectJ
286
120,693
Bug 120693 Contribution: More Efficient Lint Warnings: ~15% Performance Increase
In profiling a load-time weaving configuration from HEAD, I found that 9% of total time (over 10% of weaving time) is spent in org.aspectj.weaver.Lint.clearSuppressions(), mostly from use inside BcelClassWeaver.match I made a small change in the parts of BcelAdvice that clear suppressions to save the list that was clea...
2005-12-13 15:03:54
1,134,500,000
resolved fixed
bdafe31
1,134,510,000
weaver/src/org/aspectj/weaver/Lint.java weaver/src/org/aspectj/weaver/bcel/BcelAdvice.java
AspectJ
287
120,543
Bug 120543 Issue version message during load-time weaving
It would be very useful to know exactly which version of the weaver is being used for LTW. An informational message could be issued when each WeavingAdaptor instance is created (it is possible to have multiple versions of AspectJ in a system). This message could be similar to the that issued by "ajc -version".
2005-12-13 06:40:30
1,134,470,000
resolved fixed
9d32b76
1,134,480,000
weaver/src/org/aspectj/weaver/tools/WeavingAdaptor.java
AspectJ
288
120,521
Bug 120521 named pointcut not resolved in pertarget pointcut
Get incorrect error "can't find pointcut ..." when declaring pertarget pointcut using pointcut declared outside the aspect. True of HEAD right now. Not true of pointcuts declared inside the aspect or issingleton aspects. I thought this was reported and fixed, but I couldn't find the bug. Sorry if it is a duplicate. ---...
2005-12-13 03:18:43
1,134,460,000
resolved fixed
ae500c6
1,134,470,000
tests/bugs150/pr120521/PerTargetSubaspectError.java tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java
AspectJ
289
120,401
Bug 120401 add signature to UnresolvedType.parameterize(..) exception
I keep getting UnresolvedType UnsupportedOperationException unhelpful message "resolve this type first," so I'm adding the signature to the message (without permission, hence the bug as notice). throw new UnsupportedOperationException("unable to parameterize unresolved type: " + signature); ----------------------------...
2005-12-12 12:11:27
1,134,410,000
resolved fixed
3ac4627
1,134,410,000
weaver/src/org/aspectj/weaver/UnresolvedType.java
AspectJ
290
120,363
Bug 120363 LTW weaver include and exclude does not behave correctly
null
2005-12-12 08:42:34
1,134,400,000
resolved fixed
9edb4b6
1,134,400,000
loadtime/src/org/aspectj/weaver/loadtime/ClassLoaderWeavingAdaptor.java tests/java5/ataspectj/ataspectj/Test$$EnhancerByCGLIB$$12345.java tests/java5/ataspectj/com/foo/bar/Test$$EnhancerByCGLIB$$12345.java tests/java5/ataspectj/com/foo/bar/Test.java tests/src/org/aspectj/systemtest/ajc150/ataspectj/AtAjLTWTests.java
AspectJ
291
120,351
Bug 120351 cflowbelow issue when binding, in @AJ
null
2005-12-12 05:17:15
1,134,380,000
resolved fixed
979124d
1,134,380,000
tests/java5/ataspectj/ataspectj/bugs/CflowBelowStackTest.java tests/src/org/aspectj/systemtest/ajc150/ataspectj/AtAjLTWTests.java weaver/src/org/aspectj/weaver/bcel/BcelAdvice.java weaver/src/org/aspectj/weaver/bcel/BcelShadow.java
AspectJ
292
119,451
Bug 119451 AJDoc produces incorrect warning for package accessed aspects
null
2005-12-06 12:39:40
1,133,890,000
resolved fixed
5f8d2cd
1,134,120,000
ajde/testsrc/org/aspectj/ajde/AsmDeclarationsTest.java ajdoc/src/org/aspectj/tools/ajdoc/StubFileGenerator.java org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/AspectDeclaration.java
AspectJ
293
119,353
Bug 119353 Inconsistent Implementations of ReferenceType.getDeclaredMethods()
I am running into a problem in load-time weaving when I use reflection delegates because the weaver is generating an incorrect bridge method when I perform an inter-type declaration on Struts.ActionServlet for the init method. On investigation, the BCEL world is recognizing this as an overriding method, because its ver...
2005-12-05 23:11:15
1,133,840,000
resolved fixed
b52515f
1,134,120,000
weaver/src/org/aspectj/weaver/reflect/ReflectionBasedReferenceTypeDelegateFactory.java weaver/testsrc/org/aspectj/weaver/reflect/ReflectionBasedReferenceTypeDelegateTest.java weaver5/java5-src/org/aspectj/weaver/reflect/Java15ReflectionBasedReferenceTypeDelegate.java
AspectJ
294
109,614
Bug 109614 [waiting-on-build] [iajc.task] java.lang.RuntimeException: Ranges must be updated with an enclosing instructionList
null
2005-09-15 09:57:46
1,126,790,000
resolved fixed
94159f9
1,134,040,000
tests/bugs150/pr109614.java tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java weaver/src/org/aspectj/weaver/bcel/BcelShadow.java
AspectJ
295
119,352
Bug 119352 AjType.getSupertype breaks for null
I ran into this while using reflection proxies with LTW... See attached patches for these test cases and my fix: public void testObjectSupertype() { AjType<?> objectSuper = AjTypeSystem.getAjType(Object.class).getSupertype(); assertNull(objectSuper); } public void testInterfaceSupertype() { AjType<?> serializableSuper ...
2005-12-05 23:04:42
1,133,840,000
resolved fixed
6e8bf52
1,133,880,000
aspectj5rt/java5-src/org/aspectj/internal/lang/reflect/AjTypeImpl.java aspectj5rt/java5-testsrc/org/aspectj/internal/lang/reflect/AjTypeTests.java
AspectJ
296
118,715
Bug 118715 Load Time Weaving wipes out Xlint files if no Xlint values
In ClassLoaderWeavingAdaptor if weaverOption.lint is null, then a loaded Xlint properties file gets overwritten by the default Xlint properties. See attached patch to fix this problem.
2005-11-30 16:53:40
1,133,390,000
resolved fixed
1e1bbb3
1,133,870,000
loadtime/src/org/aspectj/weaver/loadtime/ClassLoaderWeavingAdaptor.java testing/newsrc/org/aspectj/testing/OutputSpec.java testing/newsrc/org/aspectj/testing/RunSpec.java testing/newsrc/org/aspectj/testing/XMLBasedAjcTestCase.java tests/src/org/aspectj/systemtest/ajc150/ltw/LTWTests.java weaver/src/org/aspectj/weaver/t...
AspectJ
297
118,149
Bug 118149 AspectJ compiler crahses possibly due to poincut context binding issue
I am using the latest version of AJDT (1.3.0.20051125115230). The reason is not entirely clear, but I have a pointcut of form public pointcut realPC(Common entity) : pc1(entity) || pc2(entity); Just a few hours back, I used to get an error regarding incompatible binding of entity in the || poincut. When I got that erro...
2005-11-27 01:01:55
1,133,070,000
resolved fixed
d43e74b
1,133,840,000
tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java weaver/src/org/aspectj/weaver/patterns/IfPointcut.java
AspectJ
298
118,698
Bug 118698 Not Allowing Access to Private ITD inside Nested Type
AspectJ is failing to allow access to a private ITD field from a type nested inside the aspect, which is inconsistent with Java's access rules. Here is the source. See also the follow up patch to tests that integrates it into the ajc150 test suite. public aspect prUnknown { private static interface Marker {} private cl...
2005-11-30 15:18:31
1,133,380,000
resolved fixed
6d94d09
1,133,520,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/InterTypeFieldBinding.java tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java
AspectJ
299
118,781
Bug 118781 [waiting-on-build]VerifyError in AspectJ
I'm fairly new to AspectJ, so this is probably not going to be well explained. I've started working on a project that was working fine. Then I added methods to classes that take a 2-dimensional string array parameter and suddenly I'm getting a VerifyError exception. java.lang.VerifyError: (class: com/drkw/cpds/obligor/...
2005-12-01 03:43:53
1,133,430,000
resolved fixed
a75b7fa
1,133,450,000
tests/bugs150/pr118781/MyAspect.java tests/bugs150/pr118781/MyClass.java tests/bugs150/pr118781/MyMain.java tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java weaver/src/org/aspectj/weaver/World.java
AspectJ
300
117,209
Bug 117209 Runtime error - Stack size too large, Bug#69706 related.
null
2005-11-20 01:07:23
1,132,470,000
resolved fixed
551b9ca
1,133,380,000
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildConfig.java tests/multiIncremental/pr117209/base/src/Aspect.java tests/multiIncremental/pr117209/base/src/Broken.java tests/multiIncremental/pr117209/base/src/DefaultInterfaceImplementationRecipe.java tests/multiIncremental/pr117209/base/src/MyClas...
AspectJ