Skip to content

Commit 662d25f

Browse files
committed
EDIT: Removed unnecessary Java syntax.
1 parent c90f426 commit 662d25f

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/main/java/jce/codegen/WrapperGenerator.xtend

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ import org.eclipse.emf.ecore.EPackage
2121
* @author Timur Saglam
2222
*/
2323
final class WrapperGenerator {
24-
private static final Logger logger = LogManager.getLogger(WrapperGenerator.getName)
25-
private static final IProgressMonitor MONITOR = new ProgressMonitorAdapter(logger)
26-
private static final PathHelper PACKAGE = new PathHelper(Character.valueOf('.').charValue)
27-
private static final PathHelper PATH = new PathHelper(File.separatorChar)
28-
private static final String SRC_FOLDER = "src"
29-
private static final String WRAPPER_FOLDER = PATH.append(SRC_FOLDER, "wrappers")
30-
private static IProject project
24+
static final Logger logger = LogManager.getLogger(WrapperGenerator.getName)
25+
static final IProgressMonitor MONITOR = new ProgressMonitorAdapter(logger)
26+
static final PathHelper PACKAGE = new PathHelper(Character.valueOf('.').charValue)
27+
static final PathHelper PATH = new PathHelper(File.separatorChar)
28+
static final String SRC_FOLDER = "src"
29+
static final String WRAPPER_FOLDER = PATH.append(SRC_FOLDER, "wrappers")
30+
static IProject project
3131

3232
private new() {
3333
// private constructor.

0 commit comments

Comments
 (0)