[java] Added nullMarked and Nullable annotations to ExecuteMethod Interface #16354
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:
@NullMarked
and@Nullable
annotations fromorg.jspecify.annotations
to theExecuteMethod
interface inExecuteMethod.java
, marking the interface and its methods for nullness checking.execute
method signature inExecuteMethod.java
to explicitly allownull
for both theparameters
argument and the return value by adding@Nullable
.@NullMarked
annotation to theRemoteExecuteMethod
class inRemoteExecuteMethod.java
, ensuring nullness is enforced throughout the class.🔧 Implementation Notes
💡 Additional Considerations
🔄 Types of changes
PR Type
Enhancement
Description
Added
@NullMarked
annotations toExecuteMethod
interface andRemoteExecuteMethod
classAdded
@Nullable
annotations to method parameters and return valuesImproved type safety with nullness checking annotations
Diagram Walkthrough
File Walkthrough
ExecuteMethod.java
Add nullability annotations to ExecuteMethod interface
java/src/org/openqa/selenium/remote/ExecuteMethod.java
@NullMarked
annotation to interface@Nullable
annotations toexecute
method parameters and returnvalue
org.jspecify.annotations
classesRemoteExecuteMethod.java
Add nullability annotation to RemoteExecuteMethod class
java/src/org/openqa/selenium/remote/RemoteExecuteMethod.java
@NullMarked
annotation to classorg.jspecify.annotations.NullMarked