FluentFTP 추가
This commit is contained in:
@@ -225,6 +225,10 @@ namespace NewsCrawler
|
||||
if(result != null)
|
||||
return new RESULT(TYPE.NEGATIVE, result.ToString());
|
||||
|
||||
result = m_PositiveForce.Find(s => s.IsMatch(strText));
|
||||
if (result != null)
|
||||
return new RESULT(TYPE.POSITIVE_FORCE, result.ToString());
|
||||
|
||||
result = m_Manual.Find(s => s.IsMatch(strText));
|
||||
if(result != null)
|
||||
return new RESULT(TYPE.MANUAL, result.ToString());
|
||||
@@ -233,10 +237,6 @@ namespace NewsCrawler
|
||||
if(result != null)
|
||||
return new RESULT(TYPE.POSITIVE, result.ToString());
|
||||
|
||||
result = m_PositiveForce.Find(s => s.IsMatch(strText));
|
||||
if (result != null)
|
||||
return new RESULT(TYPE.POSITIVE_FORCE, result.ToString());
|
||||
|
||||
return new RESULT(TYPE.NOT_MATCHED, "");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user