Skip to content

Commit 34942ec

Browse files
committed
Remove trailing whitespaces across LFS-related files
1 parent c85d7d5 commit 34942ec

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/Commands/LFS.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,15 @@ public async Task<bool> UnlockAsync(string remote, string file, bool force)
9393
Args = builder.ToString();
9494
return await ExecAsync().ConfigureAwait(false);
9595
}
96-
96+
9797
public async Task<bool> UnlockAsync(string remote, List<string> files, bool force)
9898
{
9999
var builder = new StringBuilder();
100100
builder
101101
.Append("lfs unlock --remote=")
102102
.Append(remote)
103103
.Append(force ? " -f " : " ");
104-
104+
105105
foreach (string file in files)
106106
{
107107
builder.Append(file.Quoted());

src/ViewModels/LFSLocks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public async Task UnlockAllMyLocksAsync(bool force = false)
7777
{
7878
if (_isLoading)
7979
return;
80-
80+
8181
IsLoading = true;
8282

8383
List<string> myLocks = [];

src/ViewModels/Repository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ public async Task<bool> UnlockLFSFileAsync(string remote, string path, bool forc
737737
log.Complete();
738738
return succ;
739739
}
740-
740+
741741
public async Task<bool> UnlockLFSFilesAsync(string remote, List<string> paths, bool force, bool notify)
742742
{
743743
CommandLog log = CreateLog("Unlock LFS File");

src/Views/LFSLocks.axaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ private async void OnUnlockAllMyLocksButtonClicked(object sender, RoutedEventArg
3535
{
3636
Message =
3737
{
38-
Text = App.Text("GitLFS.Locks.UnlockAll.Confirm")
38+
Text = App.Text("GitLFS.Locks.UnlockAll.Confirm")
3939
}
4040
};
4141

0 commit comments

Comments
 (0)