We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2c3e43 commit f7200c5Copy full SHA for f7200c5
sources/net.sf.j2s.ajax/generator/net/sf/j2s/ajax/SimpleSource4ObjectiveC.java
@@ -48,8 +48,7 @@ private static String wrapString(String s) {
48
private static void generateAnnotation(Class<?> clazz, StringBuffer source) {
49
Deprecated annDeprecated = clazz.getAnnotation(Deprecated.class);
50
if (annDeprecated != null) {
51
- source.append("@");
52
- source.append(annDeprecated.annotationType().getSimpleName());
+ source.append("// [deprecated]\r\n");
53
source.append("\r\n");
54
}
55
SimpleComment annComment = clazz.getAnnotation(SimpleComment.class);
0 commit comments