@@ -335,7 +335,7 @@ IEnumerable<T> Filter(IEnumerable<T> objects, Architecture architecture)
335
335
var archUnitType = architecture . GetITypeOfType ( type ) ;
336
336
archUnitTypeList . Add ( archUnitType ) ;
337
337
}
338
- catch ( TypeDoesNotExistInArchitecture e )
338
+ catch ( TypeDoesNotExistInArchitecture )
339
339
{
340
340
//ignore, can't have a dependency anyways
341
341
}
@@ -500,7 +500,7 @@ IEnumerable<T> Filter(IEnumerable<T> objects, Architecture architecture)
500
500
var archUnitType = architecture . GetITypeOfType ( type ) ;
501
501
archUnitTypeList . Add ( archUnitType ) ;
502
502
}
503
- catch ( TypeDoesNotExistInArchitecture e )
503
+ catch ( TypeDoesNotExistInArchitecture )
504
504
{
505
505
//ignore, can't have a dependency anyways
506
506
}
@@ -808,7 +808,7 @@ IEnumerable<T> Filter(IEnumerable<T> objects, Architecture architecture)
808
808
var archUnitAttribute = architecture . GetAttributeOfType ( type ) ;
809
809
archUnitAttributeList . Add ( archUnitAttribute ) ;
810
810
}
811
- catch ( TypeDoesNotExistInArchitecture e )
811
+ catch ( TypeDoesNotExistInArchitecture )
812
812
{
813
813
//ignore, can't have a dependency anyways
814
814
}
@@ -1148,7 +1148,7 @@ bool Predicate(T obj, Architecture architecture)
1148
1148
{
1149
1149
archUnitAttribute = architecture . GetAttributeOfType ( attribute ) ;
1150
1150
}
1151
- catch ( TypeDoesNotExistInArchitecture e )
1151
+ catch ( TypeDoesNotExistInArchitecture )
1152
1152
{
1153
1153
//can't have a dependency
1154
1154
return false ;
@@ -1449,7 +1449,7 @@ bool Predicate(T obj, Architecture architecture)
1449
1449
{
1450
1450
archUnitAttribute = architecture . GetAttributeOfType ( attribute ) ;
1451
1451
}
1452
- catch ( TypeDoesNotExistInArchitecture e )
1452
+ catch ( TypeDoesNotExistInArchitecture )
1453
1453
{
1454
1454
//can't have a dependency
1455
1455
return false ;
@@ -1915,7 +1915,7 @@ IEnumerable<T> Filter(IEnumerable<T> objects, Architecture architecture)
1915
1915
var archUnitType = architecture . GetITypeOfType ( type ) ;
1916
1916
archUnitTypeList . Add ( archUnitType ) ;
1917
1917
}
1918
- catch ( TypeDoesNotExistInArchitecture e )
1918
+ catch ( TypeDoesNotExistInArchitecture )
1919
1919
{
1920
1920
//ignore, can't have a dependency anyways
1921
1921
}
@@ -2078,7 +2078,7 @@ IEnumerable<T> Filter(IEnumerable<T> objects, Architecture architecture)
2078
2078
var archUnitAttribute = architecture . GetAttributeOfType ( type ) ;
2079
2079
archUnitAttributeList . Add ( archUnitAttribute ) ;
2080
2080
}
2081
- catch ( TypeDoesNotExistInArchitecture e )
2081
+ catch ( TypeDoesNotExistInArchitecture )
2082
2082
{
2083
2083
//ignore, can't have a dependency anyways
2084
2084
}
@@ -2418,7 +2418,7 @@ bool Predicate(T obj, Architecture architecture)
2418
2418
{
2419
2419
archUnitAttribute = architecture . GetAttributeOfType ( attribute ) ;
2420
2420
}
2421
- catch ( TypeDoesNotExistInArchitecture e )
2421
+ catch ( TypeDoesNotExistInArchitecture )
2422
2422
{
2423
2423
//can't have a dependency
2424
2424
return true ;
@@ -2721,7 +2721,7 @@ bool Predicate(T obj, Architecture architecture)
2721
2721
{
2722
2722
archUnitAttribute = architecture . GetAttributeOfType ( attribute ) ;
2723
2723
}
2724
- catch ( TypeDoesNotExistInArchitecture e )
2724
+ catch ( TypeDoesNotExistInArchitecture )
2725
2725
{
2726
2726
//can't have a dependency
2727
2727
return true ;
0 commit comments