Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
docs(javadoc): address Qodana javadoc items (anchor NIP links, fully-…
…qualify types, fix @return, and throws references); examples and client Javadoc fixed
  • Loading branch information
erict875 committed Oct 6, 2025
commit 7dc0019ece353e2725980702815094a3b910084c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class FiltersDecoder implements IDecoder<Filters> {
*
* @param jsonFiltersList JSON representation of filters
* @return decoded filters
* @throws EventEncodingException if decoding fails
* @throws nostr.event.json.codec.EventEncodingException if decoding fails
*/
@Override
public Filters decode(@NonNull String jsonFiltersList) throws EventEncodingException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
import nostr.event.filter.KindFilter;

/**
* Example showing how to open a non-blocking subscription using {@link NostrSpringWebSocketClient}
* and close it after a fixed duration.
* Example showing how to open a non-blocking subscription using
* {@link nostr.api.NostrSpringWebSocketClient} and close it after a fixed duration.
*/
public class SpringSubscriptionExample {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
import nostr.id.Identity;

/**
* Demonstrates creating, signing, and sending a text note using the {@link TextNoteEvent} class.
* Demonstrates creating, signing, and sending a text note using the
* {@link nostr.event.impl.TextNoteEvent} class.
*/
public class TextNoteEventExample {

Expand Down