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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.40</version>
<version>8.41</version>
</dependency>
</dependencies>
<executions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private TestIdUtils() {
* @throws IllegalStateException if {@link TmsLink} and {@link Issue}
* are specified inconstantly.
* @deprecated Use
* {@link com.frameworkium.core.common.reporting.TestIdUtils#getIssueOrTmsLinkValues(IMethodInstance)} instead
* {@link TestIdUtils#getIssueOrTmsLinkValues(IMethodInstance)} instead
*/
@Deprecated
public static Optional<String> getIssueOrTmsLinkValue(IMethodInstance iMethod) {
Expand All @@ -40,7 +40,7 @@ public static Optional<String> getIssueOrTmsLinkValue(IMethodInstance iMethod) {
* @param method the method to check for test ID annotations.
* @return Optional of the {@link TmsLink} or {@link Issue} value.
* @deprecated Use
* {@link com.frameworkium.core.common.reporting.TestIdUtils#getIssueOrTmsLinkValues(Method)} instead.
* {@link TestIdUtils#getIssueOrTmsLinkValues(Method)} instead.
*/
@Deprecated
public static Optional<String> getIssueOrTmsLinkValue(Method method) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import org.openqa.selenium.support.ui.ExpectedCondition;
import org.openqa.selenium.support.ui.ExpectedConditions;


import java.util.List;
import java.util.function.Function;
import java.util.stream.Collectors;
Expand Down