mirror of
https://github.com/transmission/transmission
synced 2024-12-27 10:07:40 +00:00
Remove a log.
This commit is contained in:
parent
e5fc3b555e
commit
f2ffb6698b
1 changed files with 0 additions and 2 deletions
|
@ -187,13 +187,11 @@
|
||||||
NSEnumerator * enumerator = [tempTorrents objectEnumerator];
|
NSEnumerator * enumerator = [tempTorrents objectEnumerator];
|
||||||
Torrent * torrent;
|
Torrent * torrent;
|
||||||
while ((torrent = [enumerator nextObject]))
|
while ((torrent = [enumerator nextObject]))
|
||||||
{NSLog([[torrent name] lowercaseString]);
|
|
||||||
if ([[torrent name] caseInsensitiveCompare: text] != NSOrderedAscending)
|
if ([[torrent name] caseInsensitiveCompare: text] != NSOrderedAscending)
|
||||||
{
|
{
|
||||||
[self selectRow: [fTorrents indexOfObject: torrent] byExtendingSelection: NO];
|
[self selectRow: [fTorrents indexOfObject: torrent] byExtendingSelection: NO];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
//select last torrent alphabetically if no match found
|
//select last torrent alphabetically if no match found
|
||||||
if (!torrent)
|
if (!torrent)
|
||||||
|
|
Loading…
Reference in a new issue