Skip to content

Commit

Permalink
Run spotless apply
Browse files Browse the repository at this point in the history
Signed-off-by: Damien Hawes <d-m-h@users.noreply.github.com>
  • Loading branch information
d-m-h committed Mar 4, 2024
1 parent 401281d commit 7c7cae4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,7 @@ public CircuitBreakerState currentState() {
return new CircuitBreakerState(false);
}

/**
* @return CPU time of old gen GC collection in nanoseconds
*/
/** @return CPU time of old gen GC collection in nanoseconds */
private long getGCCpuTimeNS() {
return TimeUnit.NANOSECONDS.convert(
getOldGenGCBean().getCollectionTime(), TimeUnit.MILLISECONDS);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ static final class ObjectWithDisabledFacets {
void loadOpenLineageYaml_shouldDeserialiseYamlEncodedInputStreams() {
String yamlString =
"transport:\n"
+ " type: http\n"
+ " url: http://localhost:5050\n"
+ " endpoint: api/v1/lineage\n";
+ " type: http\n"
+ " url: http://localhost:5050\n"
+ " endpoint: api/v1/lineage\n";
System.out.println(yamlString);

byte[] bytes = yamlString.getBytes(StandardCharsets.UTF_8);
Expand Down

0 comments on commit 7c7cae4

Please sign in to comment.