Fixed missing toString function
This commit is contained in:
parent
66e7ed4aaf
commit
79a2861abd
1 changed files with 5 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2020 Ziver Koc
|
||||
* Copyright (c) 2020-2024 Ziver Koc
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
@ -208,5 +208,9 @@ public class UserMessageManager implements Iterable<UserMessageManager.UserMessa
|
|||
title.equals(((UserMessage) obj).title);
|
||||
return false;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "(" + level + ", id: " + id + ") " + title;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue