File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
FluentNHibernate.Specs/PersistenceModel
FluentNHibernate/MappingModel/Collections Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -39,12 +39,12 @@ public class when_subclass_map_has_a_has_many_to_another_entity
39
39
model . Add ( new SpecialProductMap ( ) ) ;
40
40
model . Add ( new OptionMap ( ) ) ;
41
41
42
- cfg = new Configuration ( ) ;
43
- SQLiteConfiguration . Standard . InMemory ( )
44
- . ConfigureProperties ( cfg ) ;
45
- model . Configure ( cfg ) ;
42
+ // cfg = new Configuration();
43
+ // SQLiteConfiguration.Standard.InMemory()
44
+ // .ConfigureProperties(cfg);
45
+ // model.Configure(cfg);
46
46
47
- new SchemaExport ( cfg ) . Create ( true , false ) ;
47
+ // new SchemaExport(cfg).Create(true, false);
48
48
} ;
49
49
50
50
Because of = ( ) =>
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ public AttributeLayeredValues()
15
15
inner = new Dictionary < string , LayeredValues > ( ) ;
16
16
}
17
17
18
-
19
18
public AttributeLayeredValues ( SerializationInfo info , StreamingContext context )
20
19
{
21
20
inner = ( Dictionary < string , LayeredValues > ) info
@@ -28,7 +27,6 @@ public LayeredValues this[string attribute]
28
27
get
29
28
{
30
29
EnsureValueExists ( attribute ) ;
31
-
32
30
return inner [ attribute ] ;
33
31
}
34
32
}
You can’t perform that action at this time.
0 commit comments