Skip to content

Commit

Permalink
清理沒用的程式碼
Browse files Browse the repository at this point in the history
  • Loading branch information
flier268 committed Jan 11, 2019
1 parent 979141e commit f5cf87c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ConvertZZ/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows;

namespace ConvertZZ
{
/// <summary>
Expand Down Expand Up @@ -42,7 +43,7 @@ private void Application_Startup(object sender, StartupEventArgs e)
bool EncodingSetted = false;
int ToChinese = 0;
string path1 = null, path2 = null;
Regex Regex_path1 = null, Regex_path2 = null;
Regex Regex_path1 = null;
int VocabularyCorrection = -1;
for (int i = 0; i < e.Args.Length; i++)
{
Expand Down Expand Up @@ -110,7 +111,6 @@ private void Application_Startup(object sender, StartupEventArgs e)
else
{
path2 = e.Args[i];
Regex_path2 = new Regex(path2.Replace("*", "(.*?)") + "$");
}
break;
}
Expand Down

0 comments on commit f5cf87c

Please sign in to comment.