Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import com.newrelic.api.agent.ApplicationNamePriority;

/**
* An name that participates in the priority application naming rules. This class is immutable and therefore threadsafe.
* A name that participates in the priority application naming rules. This class is immutable and therefore threadsafe.
*/
public class PriorityApplicationName {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public final class AttributeNames {

public static final String RESPONSE_CONTENT_TYPE_PARAMETER_NAME = "response.headers.contentType";

// Opem Telemetry compatible attributes for host and port
// Open Telemetry compatible attributes for host and port
public static final String SERVER_ADDRESS = "server.address";
public static final String SERVER_PORT = "server.port";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
public interface BrowserService extends Service {

/**
* Get the browser configuation for the application.
* Get the browser configuration for the application.
*/
BrowserConfig getBrowserConfig(String appName);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class BrowserTransactionStateImpl implements BrowserTransactionState {

// Thread safety: public accessors that touch this object's state are synchronized. There are numerous public
// accessors that just forwards requests through to the Transaction; these aren't synchronized here, except
// when the manipulate the results (e.g. getAgentAttributes()).
// when they manipulate the results (e.g. getAgentAttributes()).

private final Object lock = new Object();
private final Transaction tx;
Expand Down
Loading