Skip to content

Commit e140068

Browse files
authored
Merge pull request #6241 from retailcoder/next
Fix xmldoc, remove ParameterlessCellsInspection
2 parents 957bbff + 940f33f commit e140068

10 files changed

+319
-568
lines changed

Rubberduck.CodeAnalysis/Inspections/Concrete/InconsistentArrayBaseInspection.cs

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
3131
/// End Sub
3232
/// ]]>
3333
/// </module>
34+
/// </example>
3435
/// <example hasResult="false">
3536
/// <module name="MyModule" type="Standard Module">
3637
/// <![CDATA[
@@ -47,6 +48,7 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
4748
/// End Sub
4849
/// ]]>
4950
/// </module>
51+
/// </example>
5052
internal class InconsistentArrayBaseInspection : IdentifierReferenceInspectionBase
5153
{
5254
public InconsistentArrayBaseInspection(IDeclarationFinderProvider declarationFinderProvider)

Rubberduck.CodeAnalysis/Inspections/Concrete/InconsistentParamArrayBaseInspection.cs

+1-15
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,6 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
2020
/// <module name="MyModule" type="Standard Module">
2121
/// <![CDATA[
2222
/// Option Base 1 '<~ Implicit array lower bound is 1
23-
/// Public Sub DoSomething()
24-
/// Dim Values As Variant
25-
///
26-
/// Values = Array(42)
27-
/// Debug.Print LBound(Values) '<~ 1 as per Option Base
28-
///
29-
/// Values = VBA.Array(42) '<<< inspection result here
30-
/// Debug.Print LBound(Values) '<~ not 1
31-
/// End Sub
32-
/// ]]>
33-
/// </module>
34-
/// <example hasResult="true">
35-
/// <module name="MyModule" type="Standard Module">
36-
/// <![CDATA[
37-
/// Option Base 1 '<~ Implicit array lower bound is 1
3823
/// Public Sub DoSomething(ParamArray Values) '<<< inspection result here
3924
/// Debug.Print LBound(Values) '<~ not 1
4025
/// End Sub
@@ -55,6 +40,7 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
5540
/// End Sub
5641
/// ]]>
5742
/// </module>
43+
/// </example>
5844
internal sealed class InconsistentParamArrayBaseInspection : DeclarationInspectionBase
5945
{
6046
public InconsistentParamArrayBaseInspection(IDeclarationFinderProvider declarationFinderProvider)

Rubberduck.CodeAnalysis/Inspections/Concrete/ParameterlessCellsInspection.cs

-93
This file was deleted.

0 commit comments

Comments
 (0)