void incUnseen() throws MailboxInfoInvalidException {
mailboxInfo.setUnseen(mailboxInfo.getUnseen()+1);
sanityCheck();
}
public void decUnseen() throws MailboxInfoInvalidException {
mailboxInfo.setUnseen(mailboxInfo.getUnseen()-1);
sanityCheck();
void incExists() throws MailboxInfoInvalidException {
mailboxInfo.setExists(mailboxInfo.getExists()+1);
sanityCheck();
}
public void decExists() throws MailboxInfoInvalidException {
mailboxInfo.setExists(mailboxInfo.getExists()-1);
sanityCheck();
Clone fragments detected by clone detection tool
File path: /columba-1.4-src/mail/src/main/java/org/columba/mail/folder/ColumbaMailboxInfo.java
|
|
File path: /columba-1.4-src/mail/src/main/java/org/columba/mail/folder/ColumbaMailboxInfo.java
|
Method name:
|
|
Method name:
|
Number of AST nodes: 0
|
|
Number of AST nodes: 0
|
|
1 | void incUnseen() throws MailboxInfoInvalidException {↵ | | 1 | void incExists() throws MailboxInfoInvalidException {↵
|
2 | mailboxInfo.setUnseen(mailboxInfo.getUnseen()+1);↵ | | 2 | mailboxInfo.setExists(mailboxInfo.getExists()+1);↵
|
3 | sanityCheck();↵ | | 3 | sanityCheck();↵
|
4 | }↵ | | 4 | }↵
|
|
5 | public void decUnseen() throws MailboxInfoInvalidException {↵ | | 5 | public void decExists() throws MailboxInfoInvalidException {↵
|
6 | mailboxInfo.setUnseen(mailboxInfo.getUnseen()-1);↵ | | 6 | mailboxInfo.setExists(mailboxInfo.getExists()-1);↵
|
7 | sanityCheck();↵ | | 7 | sanityCheck();↵
|
8 | | | 8 |
|
See real code fragment |
|
See real code fragment |
Summary
Number of common nesting structure subtrees | 0 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 0 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.0 |
Clones location | |
Number of node comparisons | 0 |