Skip to content

Commit

Permalink
Update comments Scope.java (#3060)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsandfoxes authored Nov 23, 2023
1 parent 0bd723b commit b172d4e
Showing 1 changed file with 6 additions and 6 deletions.
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

0 comments on commit b172d4e

Please sign in to comment.