Skip to content

Commit 9906857

Browse files
committed
Fixed bug of generating @SimpleInOut annotation does not import correct
class
1 parent cd47e72 commit 9906857

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/net.sf.j2s.ajax/generator/net/sf/j2s/ajax/SimpleSource4Java.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ private static boolean importAnnotationClasses(List<Field> fields,
685685
source.append("import ").append(SimpleIn.class.getName()).append(";\r\n");
686686
}
687687
if (inOutAnnImported) {
688-
source.append("import ").append(SimpleOut.class.getName()).append(";\r\n");
688+
source.append("import ").append(SimpleInOut.class.getName()).append(";\r\n");
689689
}
690690
if (outAnnImported) {
691691
source.append("import ").append(SimpleOut.class.getName()).append(";\r\n");

0 commit comments

Comments
 (0)