diff options
author | Sven Gothel <[email protected]> | 2013-07-15 13:39:44 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-07-15 13:39:44 +0200 |
commit | d5599155b28f63a83112d4a4268c2cca246c9e28 (patch) | |
tree | a7a5d48dc0d9b569fb5a3df960adb6c27bbd8b7d /src/newt/classes/jogamp | |
parent | 3a0d7703da32e9a5ddf08a334f18588a78038d88 (diff) |
StringBuffer -> StringBuilder
Diffstat (limited to 'src/newt/classes/jogamp')
-rw-r--r-- | src/newt/classes/jogamp/newt/driver/android/NewtVersionActivity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newt/classes/jogamp/newt/driver/android/NewtVersionActivity.java b/src/newt/classes/jogamp/newt/driver/android/NewtVersionActivity.java index de524d54c..9f6210269 100644 --- a/src/newt/classes/jogamp/newt/driver/android/NewtVersionActivity.java +++ b/src/newt/classes/jogamp/newt/driver/android/NewtVersionActivity.java @@ -78,7 +78,7 @@ public class NewtVersionActivity extends NewtBaseActivity { glWindow.addGLEventListener(new GLEventListener() { public void init(GLAutoDrawable drawable) { GL gl = drawable.getGL(); - final StringBuffer sb = new StringBuffer(); + final StringBuilder sb = new StringBuilder(); sb.append(JoglVersion.getGLInfo(gl, null, true)).append(Platform.NEWLINE); sb.append("Requested: ").append(Platform.NEWLINE); sb.append(drawable.getNativeSurface().getGraphicsConfiguration().getRequestedCapabilities()).append(Platform.NEWLINE).append(Platform.NEWLINE); |