From: Yann Cébron Date: Wed, 12 Aug 2020 15:22:14 +0000 (+0200) Subject: LineSeparator: fix javadoc formatting X-Git-Tag: idea/203.3645.34~2277^2~736 X-Git-Url: https://git.jetbrains.org/?p=idea%2Fcommunity.git;a=commitdiff_plain;h=8cc6ecafb8d37e3e4b26fc66f24222eb7f676e04 LineSeparator: fix javadoc formatting GitOrigin-RevId: 97e69b057b58cd192eecc5d1100f704fc0b93029 --- diff --git a/platform/util/src/com/intellij/util/LineSeparator.java b/platform/util/src/com/intellij/util/LineSeparator.java index 4de1ad54b1d3..a67b6acfbc7d 100644 --- a/platform/util/src/com/intellij/util/LineSeparator.java +++ b/platform/util/src/com/intellij/util/LineSeparator.java @@ -1,4 +1,4 @@ -// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.util; import com.intellij.openapi.diagnostic.Logger; @@ -9,10 +9,9 @@ import org.jetbrains.annotations.NotNull; import java.nio.charset.StandardCharsets; /** - *

Identifies a line separator: - * either Unix ({@code \n}), Windows (@{code \r\n}) or (possible not actual anymore) Classic Mac ({@code \r}).

- *

- *

The intention is to use this class everywhere, where a line separator is needed, instead of just Strings.

+ * Identifies a line separator: + * either Unix ({@code \n}), Windows ({@code \r\n}) or (possible not actual anymore) Classic Mac ({@code \r}). + *

The intention is to use this class everywhere, where a line separator is needed instead of just Strings.

* * @author Kirill Likhodedov */