Remove this commented out code

This commit is contained in:
GwanYeong Kim
2018-10-23 13:39:23 +09:00
committed by Sebastiaan Janssen
parent 21cb0f79c3
commit b539cc2a7a
4 changed files with 2 additions and 10 deletions

View File

@@ -333,14 +333,9 @@ ORDER BY TABLE_NAME, INDEX_NAME",
switch (systemMethod)
{
case SystemMethods.NewGuid:
return null; // NOT SUPPORTED!
//return "NEWID()";
return null; // NOT SUPPORTED!
case SystemMethods.CurrentDateTime:
return "CURRENT_TIMESTAMP";
//case SystemMethods.NewSequentialId:
// return "NEWSEQUENTIALID()";
//case SystemMethods.CurrentUTCDateTime:
// return "GETUTCDATE()";
}
return null;

View File

@@ -45,7 +45,6 @@ namespace Umbraco.Web.Controllers
//redirect to current page by default
return RedirectToCurrentUmbracoPage();
//return RedirectToCurrentUmbracoUrl();
}
}
}

View File

@@ -51,7 +51,6 @@
break;
}
// constraintValue = condition.Property.Type == "string" ? string.Format("\"{0}\"", condition.ConstraintValue) : condition.ConstraintValue;
}
switch (condition.Term.Operathor)
@@ -95,4 +94,4 @@
}
}
}
}

View File

@@ -62,7 +62,6 @@ namespace umbraco.BusinessLogic.Actions
return ActionsResolver.Current.Actions
.Where(x => !string.IsNullOrWhiteSpace(x.JsSource))
.Select(x => x.JsSource).ToList();
//return ActionJsReference;
}
/// <summary>