Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fractal
fractal
Commits
bdf3877f
Commit
bdf3877f
authored
Jan 02, 2018
by
Lionel Seinturier
Browse files
Remove no longer needed code.
parent
dc241c9f
Changes
1
Hide whitespace changes
Inline
Side-by-side
juliac/core/src/main/java/org/objectweb/fractal/juliac/conf/JuliacConfig.java
View file @
bdf3877f
...
...
@@ -115,20 +115,6 @@ public class JuliacConfig {
*/
private
File
classDir
;
/**
* The name of the jar file where compiled generated files are packaged. The
* resulting {@link File} is stored in {@link #classJarFile}.
*
* @since 2.2.4
*/
private
String
classJarFileName
=
"target/juliac.jar"
;
/**
* The jar file where compiled generated files are packaged.
* @since 2.2.4
*/
private
File
classJarFile
;
/**
* JDK level for source code.
* @since 2.2.2
...
...
@@ -368,19 +354,6 @@ public class JuliacConfig {
classDir
=
initDir
(
baseDir
,
classDirName
);
}
public
File
getClassJarFile
()
{
if
(
classJarFile
==
null
)
{
String
classJarFileName
=
getClassJarFileName
();
classJarFile
=
new
File
(
baseDir
,
classJarFileName
);
}
return
classJarFile
;
}
public
String
getClassJarFileName
()
{
return
classJarFileName
;
}
public
void
setClassJarFileName
(
String
classJarFileName
)
{
File
baseDir
=
getBaseDir
();
classJarFile
=
new
File
(
baseDir
,
classJarFileName
);
}
// ----------------------------------------------------------------------
// Setter/getter methods for Java compilation related properties
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment