Skip to content

Commit d074a98

Browse files
fix newline (#8064)
1 parent 71eaa32 commit d074a98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/src/main/java/com/alibaba/nacos/config/server/controller/ConfigServletInner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ public String doGetConfig(HttpServletRequest request, HttpServletResponse respon
263263
Pair<String, String> pair = EncryptionHandler.decryptHandler(dataId, encryptedDataKey, fileContent);
264264
String decryptContent = pair.getSecond();
265265
out = response.getWriter();
266-
out.println(decryptContent);
266+
out.print(decryptContent);
267267
out.flush();
268268
out.close();
269269
}

0 commit comments

Comments
 (0)