remove warning, and initial startup noise

This commit is contained in:
benfry
2012-12-15 23:07:06 +00:00
parent ef37654f70
commit 9500763f5b
2 changed files with 6 additions and 7 deletions

View File

@@ -89,11 +89,12 @@ public class ExperimentalMode extends JavaMode {
Logger.getLogger(ExperimentalMode.class.getName()).log(Level.SEVERE, null, ex);
}
// output version from manifest file
Package p = ExperimentalMode.class.getPackage();
String titleAndVersion = p.getImplementationTitle() + " (v" + p.getImplementationVersion() + ")";
//System.out.println(titleAndVersion);
Logger.getLogger(ExperimentalMode.class.getName()).log(Level.INFO, titleAndVersion);
// disable initial chattiness for now
// // output version from manifest file
// Package p = ExperimentalMode.class.getPackage();
// String titleAndVersion = p.getImplementationTitle() + " (v" + p.getImplementationVersion() + ")";
// //System.out.println(titleAndVersion);
// Logger.getLogger(ExperimentalMode.class.getName()).log(Level.INFO, titleAndVersion);
}

View File

@@ -41,8 +41,6 @@ import org.eclipse.jface.text.Document;
import org.eclipse.text.edits.MalformedTreeException;
import org.eclipse.text.edits.TextEdit;
import processing.app.Preferences;
import processing.core.PApplet;
import processing.mode.java.preproc.PdePreprocessor;
/**