aboutsummaryrefslogtreecommitdiff
path: root/BDInfo/BDInfoSettings.cs
diff options
context:
space:
mode:
Diffstat (limited to 'BDInfo/BDInfoSettings.cs')
-rw-r--r--BDInfo/BDInfoSettings.cs98
1 files changed, 13 insertions, 85 deletions
diff --git a/BDInfo/BDInfoSettings.cs b/BDInfo/BDInfoSettings.cs
index 7abb67499..f4cb30016 100644
--- a/BDInfo/BDInfoSettings.cs
+++ b/BDInfo/BDInfoSettings.cs
@@ -1,105 +1,33 @@
-
+
namespace BDInfo
{
class BDInfoSettings
{
- public static bool GenerateStreamDiagnostics
- {
- get
- {
- return true;
- }
- }
+ public static bool GenerateStreamDiagnostics => true;
- public static bool EnableSSIF
- {
- get
- {
- return true;
- }
- }
+ public static bool EnableSSIF => true;
- public static bool AutosaveReport
- {
- get
- {
- return false;
- }
- }
+ public static bool AutosaveReport => false;
- public static bool GenerateFrameDataFile
- {
- get
- {
- return false;
- }
- }
+ public static bool GenerateFrameDataFile => false;
- public static bool FilterLoopingPlaylists
- {
- get
- {
- return true;
- }
- }
+ public static bool FilterLoopingPlaylists => true;
- public static bool FilterShortPlaylists
- {
- get
- {
- return false;
- }
- }
+ public static bool FilterShortPlaylists => false;
- public static int FilterShortPlaylistsValue
- {
- get
- {
- return 0;
- }
- }
+ public static int FilterShortPlaylistsValue => 0;
- public static bool UseImagePrefix
- {
- get
- {
- return false;
- }
- }
+ public static bool UseImagePrefix => false;
- public static string UseImagePrefixValue
- {
- get
- {
- return null;
- }
- }
+ public static string UseImagePrefixValue => null;
/// <summary>
/// Setting this to false throws an IComparer error on some discs.
/// </summary>
- public static bool KeepStreamOrder
- {
- get
- {
- return true;
- }
- }
+ public static bool KeepStreamOrder => true;
- public static bool GenerateTextSummary
- {
- get
- {
- return false;
- }
- }
+ public static bool GenerateTextSummary => false;
- public static string LastPath
- {
- get
- {
- return string.Empty;
- }
- }
+ public static string LastPath => string.Empty;
}
}