You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This pull request introduces nullness annotations to the remote execution interfaces in the Selenium codebase, improving type safety and clarifying nullability expectations for method parameters and return values.
Nullness annotations and type safety:
Added @NullMarked and @Nullable annotations from org.jspecify.annotations to the ExecuteMethod interface in ExecuteMethod.java, marking the interface and its methods for nullness checking.
Updated the execute method signature in ExecuteMethod.java to explicitly allow null for both the parameters argument and the return value by adding @Nullable.
Added the @NullMarked annotation to the RemoteExecuteMethod class in RemoteExecuteMethod.java, ensuring nullness is enforced throughout the class.
🔧 Implementation Notes
💡 Additional Considerations
🔄 Types of changes
Cleanup (formatting, renaming)
PR Type
Enhancement
Description
Added @NullMarked annotations to ExecuteMethod interface and RemoteExecuteMethod class
Added @Nullable annotations to method parameters and return values
Improved type safety with nullness checking annotations
Diagram Walkthrough
flowchart LR
A["ExecuteMethod interface"] -- "add @NullMarked" --> B["Type-safe interface"]
A -- "add @Nullable to execute method" --> C["Nullable parameters/return"]
D["RemoteExecuteMethod class"] -- "add @NullMarked" --> E["Type-safe implementation"]
Loading
File Walkthrough
Relevant files
Enhancement
ExecuteMethod.java
Add nullability annotations to ExecuteMethod interface
The signature of execute now allows null for parameters and return value; verify all implementors and call sites handle null correctly and that this does not break binary/source compatibility or NPE assumptions.
With @NullMarked on the class, ensure overrides of execute and internal usages align with the new @Nullable contract from the interface and properly handle null parameters/returns.
Since @NullMarked makes types non-null by default, only annotate parameters or return types that are truly nullable; avoid annotating non-null parameters like commandName as implicitly nullable and document nullability in Javadoc.
@NullMarked
public interface ExecuteMethod {
- ...+ /**+ * Execute the given command on the remote webdriver server. Any exceptions will be thrown by the+ * underlying execute method.+ *+ * @param commandName The remote command to execute (must not be null)+ * @param parameters The parameters to execute that command with; may be null+ * @return The result of {@link Response#getValue()}; may be null+ */
@Nullable Object execute(String commandName, @Nullable Map<String, ?> parameters);
}
[To ensure code accuracy, apply this suggestion manually]
Suggestion importance[1-10]: 6
__
Why:
Relevant best practice - Apply nullness annotations consistently and avoid redundant or misleading annotations under a @NullMarked scope.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
User description
🔗 Related Issues
#14291
💥 What does this PR do?
This pull request introduces nullness annotations to the remote execution interfaces in the Selenium codebase, improving type safety and clarifying nullability expectations for method parameters and return values.
Nullness annotations and type safety:
@NullMarkedand@Nullableannotations fromorg.jspecify.annotationsto theExecuteMethodinterface inExecuteMethod.java, marking the interface and its methods for nullness checking.executemethod signature inExecuteMethod.javato explicitly allownullfor both theparametersargument and the return value by adding@Nullable.@NullMarkedannotation to theRemoteExecuteMethodclass inRemoteExecuteMethod.java, ensuring nullness is enforced throughout the class.🔧 Implementation Notes
💡 Additional Considerations
🔄 Types of changes
PR Type
Enhancement
Description
Added
@NullMarkedannotations toExecuteMethodinterface andRemoteExecuteMethodclassAdded
@Nullableannotations to method parameters and return valuesImproved type safety with nullness checking annotations
Diagram Walkthrough
File Walkthrough
ExecuteMethod.java
Add nullability annotations to ExecuteMethod interfacejava/src/org/openqa/selenium/remote/ExecuteMethod.java
@NullMarkedannotation to interface@Nullableannotations toexecutemethod parameters and returnvalue
org.jspecify.annotationsclassesRemoteExecuteMethod.java
Add nullability annotation to RemoteExecuteMethod classjava/src/org/openqa/selenium/remote/RemoteExecuteMethod.java
@NullMarkedannotation to classorg.jspecify.annotations.NullMarked