Skip to content

Commit 311df6c

Browse files
committed
IHideObjectMembers cleanup
Typos fix
1 parent 69a243e commit 311df6c

File tree

11 files changed

+10
-59
lines changed

11 files changed

+10
-59
lines changed

src/Simplify.Web/IHideObjectMembers.cs

Lines changed: 0 additions & 49 deletions
This file was deleted.

src/Simplify.Web/ModelBinding/Binders/Parsers/ArrayToSpecifiedListParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class ArrayToSpecifiedListParser
1515
/// </summary>
1616
/// <param name="type">The type.</param>
1717
/// <returns></returns>
18-
/// <exception cref="ModelNotSupportedException">Exception throws in case of underfined list type</exception>
18+
/// <exception cref="ModelNotSupportedException">Exception throws in case of undefined list type</exception>
1919
public static bool IsTypeValidForParsing(Type type)
2020
{
2121
if (!type.IsGenericType || type.GetGenericTypeDefinition() != typeof(IList<>))

src/Simplify.Web/Modules/Data/Html/IHtmlWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// <summary>
44
/// Various HTML generation classes container
55
/// </summary>
6-
public interface IHtmlWrapper : IHideObjectMembers
6+
public interface IHtmlWrapper
77
{
88
/// <summary>
99
/// HTML ComboBox lists generator.

src/Simplify.Web/Modules/Data/Html/IListsGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Simplify.Web.Modules.Data.Html
88
/// Usable <see cref="StringTable"/> items:
99
/// "HtmlListDefaultItemLabel"
1010
/// </summary>
11-
public interface IListsGenerator : IHideObjectMembers
11+
public interface IListsGenerator
1212
{
1313
/// <summary>
1414
/// Generate number selected HTML list

src/Simplify.Web/Modules/Data/IFileReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Simplify.Web.Modules.Data
55
/// <summary>
66
/// Represents localizable files reader
77
/// </summary>
8-
public interface IFileReader : IHideObjectMembers
8+
public interface IFileReader
99
{
1010
/// <summary>
1111
/// Setups the file reader.

src/Simplify.Web/Modules/Data/IStringTable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// <summary>
44
/// Represent string table
55
/// </summary>
6-
public interface IStringTable : IHideObjectMembers
6+
public interface IStringTable
77
{
88
/// <summary>
99
/// String table items

src/Simplify.Web/Modules/IEnvironment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// <summary>
44
/// Represent site environment properties
55
/// </summary>
6-
public interface IEnvironment : IHideObjectMembers
6+
public interface IEnvironment
77
{
88
/// <summary>
99
/// Gets the site physical path.

src/Simplify.Web/Modules/ILanguageManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// <summary>
44
/// Represent current language controller and information container
55
/// </summary>
6-
public interface ILanguageManager : IHideObjectMembers
6+
public interface ILanguageManager
77
{
88
/// <summary>
99
/// Site current language, for example: "en", "ru", "de" etc.

src/Simplify.Web/Modules/IRedirector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// <summary>
44
/// Represent website redirection manager, which controls current user location, url to previous page and url to specified page
55
/// </summary>
6-
public interface IRedirector : IHideObjectMembers
6+
public interface IRedirector
77
{
88
/// <summary>
99
/// Gets or sets the previous page url.

src/Simplify.Web/Modules/IWebContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Simplify.Web.Modules
55
/// <summary>
66
/// Represent web context
77
/// </summary>
8-
public interface IWebContext : IHideObjectMembers
8+
public interface IWebContext
99
{
1010
/// <summary>
1111
/// Current web-site route, for example: "/" or "/user/delete/15"

0 commit comments

Comments
 (0)