MCPcopy Create free account
hub / github.com/M66B/FairEmail / toString

Method toString

app/src/main/java/javax/mail/Folder.java:1653–1660  ·  view source on GitHub ↗

override the default toString(), it will return the String from Folder.getFullName() or if that is null, it will use the default toString() behavior.

()

Source from the content-addressed store, hash-verified

1651 */
1652
1653 @Override
1654 public String toString() {
1655 String s = getFullName();
1656 if (s != null)
1657 return s;
1658 else
1659 return super.toString();
1660 }
1661}

Callers 1

getURLNameMethod · 0.45

Calls 1

getFullNameMethod · 0.95

Tested by

no test coverage detected