Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Xamarin.Android.Tools.Bytecode/ClassFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ public bool IsStatic {
public bool IsEnum {
get {return (AccessFlags & ClassAccessFlags.Enum) != 0;}
}

public override string ToString () => ThisClass?.Name.Value;
}

[Flags]
Expand Down
3 changes: 1 addition & 2 deletions src/Xamarin.Android.Tools.Bytecode/ClassPath.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
Expand All @@ -8,7 +8,6 @@
using System.Xml.Linq;
using System.Xml.XPath;
using System.Text;
using Xamarin.Android.Tools.Bytecode.Kotlin;

namespace Xamarin.Android.Tools.Bytecode {

Expand Down
Loading