Made lint happier
This commit is contained in:
parent
e51f27d091
commit
1b1eb678db
23 changed files with 35 additions and 67 deletions
|
@ -37,7 +37,8 @@ eclipse {
|
|||
task afterEclipseImport(description: "Post processing after project generation", group: "IDE") {
|
||||
doLast {
|
||||
def classpath = new XmlParser().parse(file(".classpath"))
|
||||
new Node(classpath, "classpathentry", [ kind: 'src', path: 'assets' ]);
|
||||
// Result of "new" was being ignored
|
||||
// new Node(classpath, "classpathentry", [ kind: 'src', path: 'assets' ]);
|
||||
def writer = new FileWriter(file(".classpath"))
|
||||
def printer = new XmlNodePrinter(new PrintWriter(writer))
|
||||
printer.setPreserveWhitespace(true)
|
||||
|
|
|
@ -22,7 +22,7 @@ import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
|
|||
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
|
||||
import io.github.lonamiwebs.klooni.Klooni;
|
||||
|
||||
public class DesktopLauncher {
|
||||
class DesktopLauncher {
|
||||
public static void main (String[] arg) {
|
||||
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
|
||||
config.title = "Klooni 1010!";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue