Skip to content

Commit

Permalink
[system.xml] Fix public api
Browse files Browse the repository at this point in the history
  • Loading branch information
marek-safar committed Apr 27, 2015
1 parent 7f7b366 commit d86dc4c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,14 @@ protected class CollectionFixup {
object collectionItems;
string id;

public CollectionFixup (object collection, XmlSerializationCollectionFixupCallback callback, string id)
public CollectionFixup(object collection, XmlSerializationCollectionFixupCallback callback, object collectionItems)
{
this.callback = callback;
this.collection = collection;
this.collectionItems = collectionItems;
}

internal CollectionFixup (object collection, XmlSerializationCollectionFixupCallback callback, string id)
{
this.callback = callback;
this.collection = collection;
Expand All @@ -1055,14 +1062,14 @@ public object Collection {
get { return collection; }
}

public object Id {
internal object Id {
get { return id; }
}

internal object CollectionItems
public object CollectionItems
{
get { return collectionItems; }
set { collectionItems = value; }
internal set { collectionItems = value; }
}
}

Expand Down Expand Up @@ -1100,7 +1107,7 @@ public object Source {
}
}

protected class CollectionItemFixup
class CollectionItemFixup
{
Array list;
int index;
Expand Down
1 change: 0 additions & 1 deletion mcs/class/System.XML/System.Xml.dll.sources
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ ReferenceSources/SpecifiedAccessor.cs
ReferenceSources/ThisAssembly.cs
ReferenceSources/TypeScope.cs
ReferenceSources/Wsdl.cs
../../../external/referencesource/System.Data.SqlXml/System/Xml/Xsl/Assembly.cs
../../../external/referencesource/System.Data.SqlXml/System/Xml/Xsl/IlGen/GenerateHelper.cs
../../../external/referencesource/System.Data.SqlXml/System/Xml/Xsl/IlGen/IteratorDescriptor.cs
../../../external/referencesource/System.Data.SqlXml/System/Xml/Xsl/IlGen/OptimizerPatterns.cs
Expand Down

0 comments on commit d86dc4c

Please sign in to comment.