Found the code that generates this error at http://static.springsource.org/sprin...eComposer.html
Code:
private void appendTypeDeclaration() {
111 Assert.isTrue(introductionTo.getPackage().equals(aspect.getPackage()), "Aspect and introduction must be in identical packages");
112
113 this.appendIndent();
114 if (itdTypeDetails.isPrivilegedAspect()) {
115 this.append("privileged ");
116 }
117 this.append("aspect " + aspect.getSimpleTypeName() + " {");
118 this.newLine(false);
119 this.indent();
120 this.newLine();
121
122 // Set to false, as it was set true during the above operations
123 content = false;
124 }