浏览代码

Removed newline

See: https://github.com/cryptomator/cryptomator/pull/1691#discussion_r650773723
JaniruTEC 4 年之前
父节点
当前提交
1edc6e1189
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      src/main/java/org/cryptomator/common/settings/InvalidSettingException.java

+ 1 - 2
src/main/java/org/cryptomator/common/settings/InvalidSettingException.java

@@ -36,7 +36,6 @@ public class InvalidSettingException extends RuntimeException {
 		if (additionalMessage == null) {
 			return reason.getMessage();
 		}
-		return reason.getMessage() + "\n" //
-				+ "Additionally: " + additionalMessage;
+		return reason.getMessage() + "Additionally: " + additionalMessage;
 	}
 }