Skip to content

Commit 1b5e439

Browse files
committed
chore: remove override
1 parent fcbfdf2 commit 1b5e439

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

templates/dart/lib/services/service.dart.twig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ class {{ service.name | caseUcfirst }} extends Service {
1818
{{ method.description | dartComment }}
1919
{% endif %}
2020
{%~ if method.deprecated %}
21-
@override
2221
@Deprecated('This API is deprecated and uses outdated terminologies. Please use `{{ method.replaceWith | capitalizeFirst }}` instead.')
2322
{%~ endif %}
2423
{% if method.type == 'location' %}Future<Uint8List>{% else %}{% if method.responseModel and method.responseModel != 'any' %}Future<models.{{method.responseModel | caseUcfirst | overrideIdentifier}}>{% else %}Future{% endif %}{% endif %} {{ method.name | caseCamel | overrideIdentifier }}({{ _self.method_parameters(method.parameters.all, method.consumes) }}) async {

templates/flutter/lib/services/service.dart.twig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ class {{ service.name | caseUcfirst }} extends Service {
1919
{{ method.description|dartComment }}
2020
{% endif %}
2121
{%~ if method.deprecated %}
22-
@override
2322
@Deprecated('This API is deprecated and uses outdated terminologies. Please use `{{ method.replaceWith | capitalizeFirst }}` instead.')
2423
{%~ endif %}
2524
{% if method.type == 'webAuth' %}Future{% elseif method.type == 'location' %}Future<Uint8List>{% else %}{% if method.responseModel and method.responseModel != 'any' %}Future<models.{{method.responseModel | caseUcfirst | overrideIdentifier}}>{% else %}Future{% endif %}{% endif %} {{ method.name | caseCamel | overrideIdentifier }}({{ _self.method_parameters(method.parameters.all, method.consumes) }}) async {

0 commit comments

Comments
 (0)