mirror of https://github.com/apache/cloudstack.git
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…
Reference in New Issue