ruffy: Menu.toString.

This commit is contained in:
Johannes Mockenhaupt 2017-10-19 02:44:32 +02:00
parent eb87dfb3f1
commit 9300179ace
No known key found for this signature in database
GPG key ID: 9E1EA6AF7BBBB0D1

View file

@ -138,4 +138,12 @@ public class Menu implements Parcelable{
return new Menu[size];
}
};
@Override
public String toString() {
return "Menu{" +
"type=" + type +
", attributes=" + attributes +
'}';
}
}