diff options
| author | Wither OrNot | 2025-04-04 15:01:48 +0000 |
|---|---|---|
| committer | Wither OrNot | 2025-04-04 15:01:48 +0000 |
| commit | 233be2dd1446b1bfca18dff77bb25f57155ada15 (patch) | |
| tree | c5c20e521df55439b4f0ff551d67aa8408c74439 | |
| parent | 3a1b9c481df88e96515a89083034e17a90a26e86 (diff) | |
| download | TSforge-233be2dd1446b1bfca18dff77bb25f57155ada15.zip | |
.
| -rw-r--r-- | LibTSforge/SPP/SPPUtils.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/LibTSforge/SPP/SPPUtils.cs b/LibTSforge/SPP/SPPUtils.cs index 187d4f3..8cf2643 100644 --- a/LibTSforge/SPP/SPPUtils.cs +++ b/LibTSforge/SPP/SPPUtils.cs @@ -210,13 +210,13 @@ namespace LibTSforge.SPP { string psPath; - //try + try { psPath = GetPSPath(version); } - //catch + catch { - //throw new FileNotFoundException("Failed to get path of physical store."); + throw new FileNotFoundException("Failed to get path of physical store."); } if (string.IsNullOrEmpty(psPath) || !File.Exists(psPath)) |
