1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-28 19:35:36 +02:00

[173629] avoid RXTX version output for newer RXTX libs

This commit is contained in:
Martin Oberhuber 2007-04-18 17:25:46 +00:00
parent 0fefd0574a
commit ee922feacc

View file

@ -38,6 +38,10 @@ public class Activator extends AbstractUIPlugin {
*/
public void start(BundleContext context) throws Exception {
super.start(context);
String prop = System.getProperty("gnu.io.rxtx.NoVersionOutput"); //$NON-NLS-1$
if (prop==null) {
System.setProperty("gnu.io.rxtx.NoVersionOutput", "true"); //$NON-NLS-1$ //$NON-NLS-2$
}
}
/*