Skip to content

Commit 604487a

Browse files
committed
added README.md, cleaned up inspection namespaces / fixes broken links on website
1 parent 4126186 commit 604487a

33 files changed

+48
-33
lines changed

Rubberduck.CodeAnalysis/Inspections/Concrete/Excel/ApplicationWorksheetFunctionInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/ApplicationWorksheetFunctionInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Rubberduck.Parsing.VBA.DeclarationCaching;
99
using Rubberduck.Resources.Inspections;
1010

11-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.Excel
11+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1212
{
1313
/// <summary>
1414
/// Warns about late-bound WorksheetFunction calls made against the extended interface of the Application object.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyCaseBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyCaseBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Resources.Inspections;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
99
{
1010
/// <summary>
1111
/// Identifies empty 'Case' blocks that can be safely removed.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyDoWhileBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyDoWhileBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Resources.Inspections;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
99
{
1010
/// <summary>
1111
/// Identifies empty 'Do...Loop While' blocks that can be safely removed.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyElseBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyElseBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Resources.Inspections;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
99
{
1010
/// <summary>
1111
/// Identifies empty 'Else' blocks that can be safely removed.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyForEachBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyForEachBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Resources.Inspections;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
99
{
1010
/// <summary>
1111
/// Identifies empty 'For Each...Next' blocks that can be safely removed.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyForLoopBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyForLoopBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Resources.Inspections;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
99
{
1010
/// <summary>
1111
/// Identifies empty 'For...Next' blocks that can be safely removed.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyIfBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyIfBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using Rubberduck.Parsing.VBA;
77
using Rubberduck.Resources.Inspections;
88

9-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
9+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1010
{
1111
/// <summary>
1212
/// Identifies empty 'If' blocks.

Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyBlock/EmptyWhileWendBlockInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/EmptyWhileWendBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Rubberduck.Parsing.VBA;
66
using Rubberduck.Resources.Inspections;
77

8-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.EmptyBlock
8+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
99
{
1010
/// <summary>
1111
/// Identifies empty 'While...Wend' blocks that can be safely removed.

Rubberduck.CodeAnalysis/Inspections/Concrete/Excel/ExcelMemberMayReturnNothingInspection.cs renamed to Rubberduck.CodeAnalysis/Inspections/Concrete/ExcelMemberMayReturnNothingInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Rubberduck.Parsing.VBA.DeclarationCaching;
88
using Rubberduck.Resources.Inspections;
99

10-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.Excel
10+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1111
{
1212
/// <summary>Locates instances of member calls made against the result of a Range.Find/FindNext/FindPrevious method, without prior validation.</summary>
1313
/// <reference name="Excel" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using Rubberduck.VBEditor;
1212
using Rubberduck.VBEditor.SafeComWrappers;
1313

14-
namespace Rubberduck.CodeAnalysis.Inspections.Concrete.Excel
14+
namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1515
{
1616
/// <summary>
1717
/// Locates public User-Defined Function procedures accidentally named after a cell reference.

0 commit comments

Comments
 (0)