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/com | |
parent | 3a0d7703da32e9a5ddf08a334f18588a78038d88 (diff) |
StringBuffer -> StringBuilder
Diffstat (limited to 'src/newt/classes/com')
-rw-r--r-- | src/newt/classes/com/jogamp/newt/MonitorMode.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newt/classes/com/jogamp/newt/MonitorMode.java b/src/newt/classes/com/jogamp/newt/MonitorMode.java index dc7ae2c03..218cd8bd5 100644 --- a/src/newt/classes/com/jogamp/newt/MonitorMode.java +++ b/src/newt/classes/com/jogamp/newt/MonitorMode.java @@ -156,8 +156,8 @@ public class MonitorMode implements Comparable<MonitorMode> { private final static String STR_DOUBLESCAN = "DoubleScan"; private final static String STR_SEP = ", "; - public static final StringBuffer flags2String(int flags) { - final StringBuffer sb = new StringBuffer(); + public static final StringBuilder flags2String(int flags) { + final StringBuilder sb = new StringBuilder(); boolean sp = false; if( 0 != ( flags & FLAG_INTERLACE ) ) { sb.append(STR_INTERLACE); |