Skip to content

Commit 3349f33

Browse files
committed
comments: remove JIRA ticket reference from code comments
1 parent 8245bc4 commit 3349f33

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/io/percy/selenium/Percy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ private String buildSnapshotJS(Map<String, Object> options) {
605605
}
606606

607607
/**
608-
* Readiness gate (PER-7348): runs PercyDOM.waitForReady BEFORE serialize.
608+
* Readiness gate: runs PercyDOM.waitForReady BEFORE serialize.
609609
*
610610
* Uses executeAsyncScript with a callback signal. The embedded JS checks
611611
* typeof PercyDOM.waitForReady === 'function' so older CLI versions that
@@ -766,7 +766,7 @@ private Map<String, Object> processFrame(WebElement frameElement, Map<String, Ob
766766
}
767767

768768
Map<String, Object> getSerializedDOM(JavascriptExecutor jse, Set<Cookie> cookies, Map<String, Object> options) {
769-
// Readiness gate before serialize (PER-7348). Graceful on old CLI.
769+
// Readiness gate before serialize. Graceful on old CLI.
770770
Object readinessDiagnostics = waitForReady(jse, options);
771771

772772
Map<String, Object> domSnapshot = (Map<String, Object>) jse.executeScript(buildSnapshotJS(options));

src/test/java/io/percy/selenium/SdkTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@ public void captureResponsiveDomRefreshesDriverForEachWidthWhenReloadFlagSet() t
11091109
}
11101110
}
11111111

1112-
// --- Readiness gate (PER-7348) -----------------------------------------
1112+
// --- Readiness gate -----------------------------------------
11131113

11141114
@Test
11151115
public void readinessRunsBeforeSerializeAndAttachesDiagnostics() throws Exception {

0 commit comments

Comments
 (0)