Skip to content

Commit

Permalink
createFieldDescriptor(VariableElement variableElement, TypeMirror typ…
Browse files Browse the repository at this point in the history
…e) must be public
  • Loading branch information
treblereel committed Jun 18, 2024
1 parent 3098203 commit 69754f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ public FieldDescriptor createFieldDescriptor(VariableElement variableElement) {
return createFieldDescriptor(variableElement, variableElement.asType());
}

FieldDescriptor createFieldDescriptor(VariableElement variableElement, TypeMirror type) {
public FieldDescriptor createFieldDescriptor(VariableElement variableElement, TypeMirror type) {

boolean isStatic = isStatic(variableElement);
Visibility visibility = getVisibility(variableElement);
Expand Down

0 comments on commit 69754f9

Please sign in to comment.