mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
Changes necessary to ensure that mono and windows both serialize templates identically
This commit is contained in:
parent
87625a5c48
commit
3ad0b16e4b
@ -1274,6 +1274,7 @@ namespace Twiglet.CS2J.Translator.TypeRep
|
|||||||
set { _javaGet = value; }
|
set { _javaGet = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
public override string Java
|
public override string Java
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
@ -1281,6 +1282,7 @@ namespace Twiglet.CS2J.Translator.TypeRep
|
|||||||
return JavaGet;
|
return JavaGet;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
protected string _javaSet = null;
|
protected string _javaSet = null;
|
||||||
[XmlElementAttribute("Set")]
|
[XmlElementAttribute("Set")]
|
||||||
@ -1348,7 +1350,7 @@ namespace Twiglet.CS2J.Translator.TypeRep
|
|||||||
public override string mkJava ()
|
public override string mkJava ()
|
||||||
{
|
{
|
||||||
// favour JavaGet
|
// favour JavaGet
|
||||||
return null;
|
return JavaGet;
|
||||||
}
|
}
|
||||||
|
|
||||||
#region Equality
|
#region Equality
|
||||||
@ -2647,6 +2649,7 @@ namespace Twiglet.CS2J.Translator.TypeRep
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[XmlArrayItem("Cast")]
|
||||||
public override List<CastRepTemplate> Casts {
|
public override List<CastRepTemplate> Casts {
|
||||||
get {
|
get {
|
||||||
if (_casts == null)
|
if (_casts == null)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user