From 40673fe66c47200ad01b8ad5c55142d9be1aba4c Mon Sep 17 00:00:00 2001 From: Marco Miller Date: Mon, 21 Sep 2020 15:45:00 -0400 Subject: [PATCH] GerritSimulation: Remove unnecessary use of 'this' Change-Id: Ifb4b75797e97a4c280aa90c26bfef3a87f03a3db --- .../com/google/gerrit/scenarios/GerritSimulation.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e-tests/src/test/scala/com/google/gerrit/scenarios/GerritSimulation.scala b/e2e-tests/src/test/scala/com/google/gerrit/scenarios/GerritSimulation.scala index 5961dd3d4d..6118460476 100644 --- a/e2e-tests/src/test/scala/com/google/gerrit/scenarios/GerritSimulation.scala +++ b/e2e-tests/src/test/scala/com/google/gerrit/scenarios/GerritSimulation.scala @@ -23,13 +23,13 @@ import io.gatling.http.request.builder.HttpRequestBuilder class GerritSimulation extends Simulation { implicit val conf: GatlingGitConfiguration = GatlingGitConfiguration() - private val pack = this.getClass.getPackage.getName + private val pack = getClass.getPackage.getName private val path = pack.replaceAllLiterally(".", "/") - protected val name: String = this.getClass.getSimpleName + protected val name: String = getClass.getSimpleName private val pathName = s"data/$path/$name" protected val resource = s"$pathName.json" protected val body = s"$pathName-body.json" - protected val unique: String = name + "-" + this.hashCode() + protected val unique: String = name + "-" + hashCode() protected val single = 1 val replicationDelay: Int = replaceProperty("replication_delay", 15).toInt