Skip to content
This repository has been archived by the owner on Nov 18, 2022. It is now read-only.

Commit

Permalink
Disable accidentally left-on debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
unascribed committed Jun 1, 2016
1 parent d0488b5 commit 15f040e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defaultTasks 'clean', 'licenseFormat', 'build'

// Project information
group = 'com.surgeplay'
version = '1.3.0-SNAPSHOT'
version = '1.3.1-SNAPSHOT'
archivesBaseName = 'Visage'
mainClassName = 'com.surgeplay.visage.Visage'

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/surgeplay/visage/Visage.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
import com.typesafe.config.ConfigFactory;

public class Visage {
public static final String VERSION = "1.2.6";
public static final String VERSION = "1.3.1";
public static final Formatter logFormat = new VisageFormatter();
public static final Logger log = Logger.getLogger("com.surgeplay.visage");
public static boolean debug, trace;
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/surgeplay/visage/slave/render/Renderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,6 @@ protected void initGL(float width, float height) throws LWJGLException {
glMatrixMode(GL_MODELVIEW);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glEnable(GL_CULL_FACE);
prims.clear();
initPrimitives();
}
public void finish() throws LWJGLException {
pbuffer.releaseContext();
Expand Down

0 comments on commit 15f040e

Please sign in to comment.