This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko.git
The following commit(s) were added to refs/heads/main by this push:
new d610a080c5 improve scaladoc for DoNotInherit (#565)
d610a080c5 is described below
commit d610a080c5983e6d5371a07cae1a0cc6b762a6ae
Author: Dongxu Wang <[email protected]>
AuthorDate: Wed Aug 16 00:21:53 2023 +0800
improve scaladoc for DoNotInherit (#565)
---
actor/src/main/java/org/apache/pekko/annotation/DoNotInherit.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/actor/src/main/java/org/apache/pekko/annotation/DoNotInherit.java
b/actor/src/main/java/org/apache/pekko/annotation/DoNotInherit.java
index 9e13c1283a..bb9f04864a 100644
--- a/actor/src/main/java/org/apache/pekko/annotation/DoNotInherit.java
+++ b/actor/src/main/java/org/apache/pekko/annotation/DoNotInherit.java
@@ -16,14 +16,14 @@ package org.apache.pekko.annotation;
import java.lang.annotation.*;
/**
- * Marks APIs that are designed under an closed-world assumption for and are
NOT meant to be
- * extended by user-code. It is fine to extend these classes within Apache
Pekko itself, however.
+ * Marks APIs that are designed under a closed-world assumption for and are
NOT meant to be extended
+ * by user-code. It is fine to extend these classes within Apache Pekko
itself, however.
*
* <p>This is most useful for binary compatibility purposes when a set of
classes and interfaces
* assume a "closed world" between them, and gain the ability to add methods
to the interfaces
* without breaking binary compatibility for users of this code. Specifically
this assumption may be
* understood intuitively: as all classes that implement this interface are in
this compilation unit
- * / artifact, it is impossible to obtain a "old" class with a "new"
interface, as they are part of
+ * / artifact, it is impossible to obtain an "old" class with a "new"
interface, as they are part of
* the same dependency.
*
* <p>Notable examples of such API include the FlowOps trait in Pekko Streams
or Pekko HTTP model
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]