This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch CAUSEWAY-3676 in repository https://gitbox.apache.org/repos/asf/causeway.git
commit f7519d8181e83ea6c6aa8cee66af7951499a64c4 Author: danhaywood <[email protected]> AuthorDate: Mon Feb 12 23:41:06 2024 +0000 CAUSEWAY-3676: removes commented out code --- .../causeway/viewer/graphql/model/domain/GqlvScenario.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/viewers/graphql/model/src/main/java/org/apache/causeway/viewer/graphql/model/domain/GqlvScenario.java b/viewers/graphql/model/src/main/java/org/apache/causeway/viewer/graphql/model/domain/GqlvScenario.java index 3ab8fa478c..10240f86ab 100644 --- a/viewers/graphql/model/src/main/java/org/apache/causeway/viewer/graphql/model/domain/GqlvScenario.java +++ b/viewers/graphql/model/src/main/java/org/apache/causeway/viewer/graphql/model/domain/GqlvScenario.java @@ -45,14 +45,8 @@ public class GqlvScenario this.scenarioStep = new GqlvScenarioStep(context); addChildField(scenarioStep.newField("Given")); -// addChildField(scenarioStep.newField("GivenAlso")); -// addChildField(scenarioStep.newField("GivenAlsoAlso")); -// addChildField(scenarioStep.newField("GivenAlsoAlsoAlso")); addChildField(scenarioStep.newField("When")); addChildField(scenarioStep.newField("Then")); -// addChildField(scenarioStep.newField("ThenAlso")); -// addChildField(scenarioStep.newField("ThenAlsoAlso")); -// addChildField(scenarioStep.newField("ThenAlsoAlsoAlso")); buildObjectType(); @@ -72,14 +66,8 @@ public class GqlvScenario protected void addDataFetchersForChildren() { scenarioName.addDataFetcher(this); scenarioStep.addDataFetcher(this, "Given"); -// scenarioStep.addDataFetcher(this, "GivenAlso"); -// scenarioStep.addDataFetcher(this, "GivenAlsoAlso"); -// scenarioStep.addDataFetcher(this, "GivenAlsoAlsoAlso"); scenarioStep.addDataFetcher(this, "When"); scenarioStep.addDataFetcher(this, "Then"); -// scenarioStep.addDataFetcher(this, "ThenAlso"); -// scenarioStep.addDataFetcher(this, "ThenAlsoAlso"); -// scenarioStep.addDataFetcher(this, "ThenAlsoAlsoAlso"); } @Override
