Skip to content

Commit

Permalink
v0.0.235
Browse files Browse the repository at this point in the history
  • Loading branch information
Bart Van Hoey committed Oct 31, 2023
1 parent 79409a7 commit 18198e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions snippets/csharp.json
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
"body": [
"if (${1:MyVariable} != null && ${2:$1}.Count > 0)",
"{",
"\t$2",
"\t$3",
"}",
"$0"
],
Expand Down Expand Up @@ -310,9 +310,9 @@
},
"ifNullOrCountIsZeroStatement": {
"body": [
"if (${1:MyVariable} == null || ${2:$1}.Count === 0)",
"if (${1:MyVariable} == null || ${2:$1}.Count == 0)",
"{",
"\t$2",
"\t$3",
"}",
"$0"
],
Expand Down
6 changes: 3 additions & 3 deletions snippets/razor.json
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@
"body": [
"if (${1:MyVariable} != null && ${2:$1}.Count > 0)",
"{",
"\t$2",
"\t$3",
"}",
"$0"
],
Expand Down Expand Up @@ -278,9 +278,9 @@
},
"ifNullOrCountIsZeroStatement": {
"body": [
"if (${1:MyVariable} == null || ${2:$1}.Count === 0)",
"if (${1:MyVariable} == null || ${2:$1}.Count == 0)",
"{",
"\t$2",
"\t$3",
"}",
"$0"
],
Expand Down

0 comments on commit 18198e6

Please sign in to comment.