src/main/java/net/curisit/securis/LicenseManager.java
.. .. @@ -147,7 +147,7 @@ 147 147 public void save(SignedLicenseBean signedLic, File file) throws SeCurisException { 148 148 byte[] json; 149 149 try { 150 - json = JsonUtils.toJSON(signedLic, true).getBytes("utf-8");150 + json = JsonUtils.toPrettyJSON(signedLic).getBytes("utf-8");151 151 Files.write(Paths.get(file.toURI()), json, StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING); 152 152 } catch (UnsupportedEncodingException e) { 153 153 LOG.error("Error creating json doc from license: " + signedLic, e);