Skip to content

Commit 0bd58a4

Browse files
committed
Removed stray spaces
1 parent 720a653 commit 0bd58a4

53 files changed

Lines changed: 112 additions & 141 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/Platforms/SecureFolderFS.Cli/Commands/CredsAddCommand.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,3 @@ public override async ValueTask ExecuteAsync(IConsole console)
114114
}
115115
}
116116
}
117-
118-
119-
120-
121-

src/Platforms/SecureFolderFS.Cli/Commands/CredsChangeCommand.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,3 @@ public override async ValueTask ExecuteAsync(IConsole console)
124124
}
125125
}
126126
}
127-
128-
129-
130-

src/Platforms/SecureFolderFS.Cli/Commands/CredsRemoveCommand.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,3 @@ public override async ValueTask ExecuteAsync(IConsole console)
6565
}
6666
}
6767
}
68-
69-
70-
71-

src/Platforms/SecureFolderFS.Cli/Commands/VaultInfoCommand.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,3 @@ public override async ValueTask ExecuteAsync(IConsole console)
4141
}
4242
}
4343
}
44-
45-
46-
47-

src/Platforms/SecureFolderFS.Cli/Commands/VaultMountCommand.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,3 @@ private async Task<IFileSystemInfo> ResolveFileSystemAsync(IVaultFileSystemServi
158158
return await service.GetBestFileSystemAsync();
159159
}
160160
}
161-
162-
163-
164-

src/Platforms/SecureFolderFS.Cli/Commands/VaultRunCommand.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,3 @@ private static async Task WriteToVaultAsync(IFolder root, string path)
139139
await stdin.CopyToAsync(destinationStream);
140140
}
141141
}
142-
143-
144-
145-
146-

src/Platforms/SecureFolderFS.Cli/Commands/VaultUnmountCommand.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,3 @@ private static bool IsMatch(IVfsRoot root, string requestedPath)
6565
return parent is not null && string.Equals(parent, requestedPath, StringComparison.OrdinalIgnoreCase);
6666
}
6767
}
68-
69-
70-
71-

src/Platforms/SecureFolderFS.Cli/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ namespace SecureFolderFS.Cli
88
internal static class Program
99
{
1010
public static CliLifecycleHelper Lifecycle { get; } = new();
11-
11+
1212
private static async Task<int> Main(string[] args)
1313
{
1414
await Lifecycle.InitAsync();
1515
DI.Default.SetServiceProvider(Lifecycle.ServiceCollection.BuildServiceProvider());
16-
16+
1717
#if DEBUG
1818
if (args.IsEmpty())
1919
{

src/Platforms/SecureFolderFS.Maui/Helpers/EasingHelpers.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ private static Easing CubicBezier(double x1, double y1, double x2, double y2)
3737
break;
3838

3939
var derivative = (3d * ax * tEstimate + 2d * bx) * tEstimate + cx;
40-
if (Math.Abs(derivative) < 1e-6) break;
40+
if (Math.Abs(derivative) < 1e-6)
41+
break;
4142

4243
tEstimate -= dx / derivative;
4344
tEstimate = Math.Clamp(tEstimate, 0.0, 1.0);

src/Platforms/SecureFolderFS.Maui/Platforms/Android/Helpers/AndroidLifecycleHelper.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace SecureFolderFS.Maui.Platforms.Android.Helpers
1919
internal sealed class AndroidLifecycleHelper : BaseLifecycleHelper, IRecipient<VaultUnlockedMessage>
2020
{
2121
private bool _isForegroundServiceStarted;
22-
22+
2323
/// <inheritdoc/>
2424
public override string AppDirectory { get; } = FileSystem.Current.AppDataDirectory;
2525

@@ -40,13 +40,13 @@ public override void LogExceptionToFile(Exception? ex)
4040
{
4141
_ = ex;
4242
}
43-
43+
4444
/// <inheritdoc/>
4545
public async void Receive(VaultUnlockedMessage message)
4646
{
4747
if (_isForegroundServiceStarted || MainActivity.Instance is null)
4848
return;
49-
49+
5050
// Start the vault foreground service so it's ready to receive messenger messages
5151
var serviceIntent = new Intent(MainActivity.Instance, typeof(VaultForegroundService));
5252
if (Build.VERSION.SdkInt >= BuildVersionCodes.O)
@@ -55,7 +55,7 @@ public async void Receive(VaultUnlockedMessage message)
5555
MainActivity.Instance.StartService(serviceIntent);
5656

5757
_isForegroundServiceStarted = true;
58-
58+
5959
// Add the initial vault
6060
var foregroundService = await VaultForegroundService.GetInstanceAsync();
6161
foregroundService.UnlockedVaults.Add(message.VaultModel);

0 commit comments

Comments
 (0)