format code

This commit is contained in:
2014-11-16 15:30:27 +01:00
parent 4246b92e85
commit 6d3974db53
30 changed files with 1484 additions and 1490 deletions
@@ -148,7 +148,7 @@ public class Win32ProcessTools extends ProcessTools {
Map<String, Character> ret = new HashMap<>();
for (char d = 'A'; d <= 'Z'; d++) {
char[] buf = new char[1024];
int len = Kernel32.INSTANCE.QueryDosDevice("" + d + ":", buf, buf.length).intValue();
int len = Kernel32.INSTANCE.QueryDosDevice(d + ":", buf, buf.length).intValue();
String tar = new String(buf, 0, len);
tar = tar.trim();
if (!"".equals(tar)) {