mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 20:02:29 +01:00
Fix findbugs warning in VmwareHelper.java Disk descriptors should be written in UTF-8 for Vmware
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com> This closes #407
This commit is contained in:
parent
dc64c7e843
commit
aa56faec51
@ -469,7 +469,7 @@ public class VmwareHelper {
|
||||
ByteArrayOutputStream bos = new ByteArrayOutputStream();
|
||||
|
||||
try {
|
||||
out = new BufferedWriter(new OutputStreamWriter(bos));
|
||||
out = new BufferedWriter(new OutputStreamWriter(bos,"UTF-8"));
|
||||
|
||||
out.write("disksInChain=" + disksInChain);
|
||||
out.newLine();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user