Skip to content

Commit

Permalink
Automatic code cleanup.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 610109665
Change-Id: Ib94133e87400f4c910e1c1ddc1a7c92a8d49b5dc
  • Loading branch information
Googler authored and copybara-github committed Feb 25, 2024
1 parent 9ca9a24 commit 9d34f8a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,23 +150,6 @@ public void testRunInterrupted() {
rootNode.testInterrupted(now());
}

/**
* Indicate that the test case with the given key has requested that a property be written in the
* XML.
*
* <p>
*
* @param description key for a test case
* @param name The property name.
* @param value The property value.
*/
public void testEmittedProperty(Description description, String name, String value) {
TestCaseNode testCase = getTestCase(description);
if (testCase != null) {
testCase.exportProperty(name, value);
}
}

/**
* Adds a failure to the test with the given key. If the specified test is suite, the failure will
* be added to all its children.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,13 +209,4 @@ public void writeCharacters(String text) throws IOException {
}
writer.write(XmlEscapers.xmlContentEscaper().escape(text));
}

/**
* Gets the writer that this object uses for writing.
*
* VisibleForTesting
*/
Writer getUnderlyingWriter() {
return writer;
}
}

0 comments on commit 9d34f8a

Please sign in to comment.