Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Comments cleanup in Scope.java #3060

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Changes from all commits
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
12 changes: 6 additions & 6 deletions sentry/src/main/java/io/sentry/Scope.java
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ public Queue<Breadcrumb> getBreadcrumbs() {
}

/**
* Adds a breadcrumb to the breadcrumbs queue It also executes the BeforeBreadcrumb callback if
* Adds a breadcrumb to the breadcrumbs queue. It also executes the BeforeBreadcrumb callback if
* set
*
* @param breadcrumb the breadcrumb
Expand Down Expand Up @@ -737,7 +737,7 @@ Session withSession(final @NotNull IWithSession sessionCallback) {
return cloneSession;
}

/** the IWithSession callback */
/** The IWithSession callback */
interface IWithSession {

/**
Expand Down Expand Up @@ -785,14 +785,14 @@ SessionPair startSession() {
/** The SessionPair class */
static final class SessionPair {

/** the previous session if exists */
/** The previous session if exists */
private final @Nullable Session previous;

/** The current Session */
private final @NotNull Session current;

/**
* The SessionPar ctor
* The SessionPair ctor
*
* @param current the current session
* @param previous the previous sessions if exists or null
Expand All @@ -803,7 +803,7 @@ public SessionPair(final @NotNull Session current, final @Nullable Session previ
}

/**
* REturns the previous session
* Returns the previous session
*
* @return the previous sessions if exists or null
*/
Expand Down Expand Up @@ -880,7 +880,7 @@ public void setPropagationContext(final @NotNull PropagationContext propagationC
}
}

/** the IWithTransaction callback */
/** The IWithTransaction callback */
@ApiStatus.Internal
public interface IWithTransaction {

Expand Down
Loading