Skip to content

Commit

Permalink
default defPublic argument of XmlParser.xclassField to false so we do…
Browse files Browse the repository at this point in the history
… not get null for isPublic
  • Loading branch information
Simn committed Jun 4, 2014
1 parent d93c70f commit 50a6bce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/haxe/rtti/XmlParser.hx
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ class XmlParser {
};
}

function xclassfield( x : Fast, ?defPublic ) : ClassField {
function xclassfield( x : Fast, ?defPublic = false ) : ClassField {
var e = x.elements;
var t = xtype(e.next());
var doc = null;
Expand Down

0 comments on commit 50a6bce

Please sign in to comment.