Fix tests.
This commit is contained in:
@@ -54,9 +54,9 @@ public class JAXBUtils {
|
||||
|
||||
}
|
||||
|
||||
public static void saveMap(@NotNull Object obj, @NotNull OutputStream out, String pachage) throws JAXBException {
|
||||
public static void saveMap(@NotNull Object obj, @NotNull OutputStream out, String packag) throws JAXBException {
|
||||
|
||||
final JAXBContext context = getInstance(pachage);
|
||||
final JAXBContext context = getInstance(packag);
|
||||
final Marshaller marshaller = context.createMarshaller();
|
||||
|
||||
marshaller.marshal(obj, out);
|
||||
|
@@ -40,7 +40,7 @@ public class ZipUtils {
|
||||
byte[] buffer = new byte[512];
|
||||
|
||||
int len;
|
||||
StringBuffer sb_result = new StringBuffer();
|
||||
StringBuilder sb_result = new StringBuilder();
|
||||
|
||||
while ((len = zipIn.read(buffer)) > 0) {
|
||||
|
||||
|
Reference in New Issue
Block a user