Skip to content

Commit

Permalink
Remove excess match group.
Browse files Browse the repository at this point in the history
  • Loading branch information
qwandor committed Dec 22, 2020
1 parent 9514ed3 commit df704ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions syntaxes/aidl.tmLanguage.YAML-tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ repository:
type:
patterns:
- include: '#annotation'
- match: (\b(void|boolean|byte|char|int|long|float|double)\b)
- match: \b(void|boolean|byte|char|int|long|float|double)\b
name: storage.type.aidl
- match: (\b(CharSequence|FileDescriptor|IBinder|List|Map|ParcelableHolder|ParcelFileDescriptor|String)\b)
- match: \b(CharSequence|FileDescriptor|IBinder|List|Map|ParcelableHolder|ParcelFileDescriptor|String)\b
name: support.class.aidl
- match: '\[\]'
name: punctuation.aidl
Expand Down
4 changes: 2 additions & 2 deletions syntaxes/aidl.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,11 @@
"include": "#annotation"
},
{
"match": "(\\b(void|boolean|byte|char|int|long|float|double)\\b)",
"match": "\\b(void|boolean|byte|char|int|long|float|double)\\b",
"name": "storage.type.aidl"
},
{
"match": "(\\b(CharSequence|FileDescriptor|IBinder|List|Map|ParcelableHolder|ParcelFileDescriptor|String)\\b)",
"match": "\\b(CharSequence|FileDescriptor|IBinder|List|Map|ParcelableHolder|ParcelFileDescriptor|String)\\b",
"name": "support.class.aidl"
},
{
Expand Down

0 comments on commit df704ba

Please sign in to comment.