Skip to content

Commit

Permalink
refactor: Rename functions to meet Java naming conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
travisstebbins committed Oct 25, 2024
1 parent 52feb73 commit 12202e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ static Iterable<? extends LegendExecutionResult> generateExecutionPlan(FunctionE
return results;
}

static Iterable<? extends LegendExecutionResult> convertGrammarToJSON_lambda(FunctionExecutionSupport executionSupport, SectionState section, String entityPath, Map<String, String> executableArgs, Map<String, Object> inputParameters)
static Iterable<? extends LegendExecutionResult> convertGrammarToLambdaJson(FunctionExecutionSupport executionSupport, SectionState section, String entityPath, Map<String, String> executableArgs, Map<String, Object> inputParameters)
{
AbstractLSPGrammarExtension extension = executionSupport.getExtension();

Expand Down Expand Up @@ -385,7 +385,7 @@ static Iterable<? extends LegendExecutionResult> convertGrammarToJSON_lambda(Fun
return results;
}

static Iterable<? extends LegendExecutionResult> convertJSONToGrammar_lambda_batch(FunctionExecutionSupport executionSupport, SectionState section, String entityPath, Map<String, String> executableArgs, Map<String, Object> inputParameters)
static Iterable<? extends LegendExecutionResult> convertLambdaJsonToGrammarBatch(FunctionExecutionSupport executionSupport, SectionState section, String entityPath, Map<String, String> executableArgs, Map<String, Object> inputParameters)
{
AbstractLSPGrammarExtension extension = executionSupport.getExtension();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -315,11 +315,11 @@ public Iterable<? extends LegendExecutionResult> execute(SectionState section, S
}
case FunctionExecutionSupport.GRAMMAR_TO_JSON_LAMBDA_ID:
{
return FunctionExecutionSupport.convertGrammarToJSON_lambda(this, section, entityPath, executableArgs, inputParams);
return FunctionExecutionSupport.convertGrammarToLambdaJson(this, section, entityPath, executableArgs, inputParams);
}
case FunctionExecutionSupport.JSON_TO_GRAMMAR_LAMBDA_BATCH_ID:
{
return FunctionExecutionSupport.convertJSONToGrammar_lambda_batch(this, section, entityPath, executableArgs, inputParams);
return FunctionExecutionSupport.convertLambdaJsonToGrammarBatch(this, section, entityPath, executableArgs, inputParams);
}
case FunctionExecutionSupport.GET_LAMBDA_RETURN_TYPE_ID:
{
Expand Down

0 comments on commit 12202e4

Please sign in to comment.