Add @SuppressWarnings("unused") to generated Java classes

Usually generators add @SuppressWarnings("all") to generated Java
classes to prevent IDEs from complaining about unused imports, etc.
Solving used imports seems pretty hard with current generator logic so
IMO this is the next best thing.

Yes, it’s appended to import block but that is the block that gives
these warnings in the first place.
This commit is contained in:
Teemu Andersén 2015-09-10 19:56:50 +03:00
parent 01e06b69a5
commit 5dd8795a10
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ LanguageParameters language_parameters[] = {
"position()",
"offset()",
"import java.nio.*;\nimport java.lang.*;\nimport java.util.*;\n"
"import com.google.flatbuffers.*;\n\n",
"import com.google.flatbuffers.*;\n\n@SuppressWarnings(\"unused\")\n",
{
"/**",
" *",