diff options
author | sr55 <[email protected]> | 2007-12-20 18:17:42 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-12-20 18:17:42 +0000 |
commit | 497e1b008f2ad22b2a67405e53edd047167a398a (patch) | |
tree | 26f7303012ba259faec831894ee28c0f67d0ae32 /win/C#/Parsing/Subtitle.cs | |
parent | 2f4b0dffd1b896bd7186e8be3d03cc56ae28e051 (diff) |
WinGui:
- Some more code code cleanup done. Nothing major.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1141 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Parsing/Subtitle.cs')
-rw-r--r-- | win/C#/Parsing/Subtitle.cs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/win/C#/Parsing/Subtitle.cs b/win/C#/Parsing/Subtitle.cs index 6d83d2613..defcb5b0e 100644 --- a/win/C#/Parsing/Subtitle.cs +++ b/win/C#/Parsing/Subtitle.cs @@ -55,9 +55,7 @@ namespace Handbrake.Parsing return thisSubtitle;
}
else
- {
return null;
- }
}
public static Subtitle[] ParseList(StringReader output)
@@ -68,13 +66,9 @@ namespace Handbrake.Parsing Subtitle thisSubtitle = Subtitle.Parse(output);
if (thisSubtitle != null)
- {
subtitles.Add(thisSubtitle);
- }
else
- {
break;
- }
}
return subtitles.ToArray();
}
|