Remove dead assignments found by static code analysis.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@32022 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2011-02-09 22:20:00 +00:00
parent f48dfb5072
commit 475f2d07aa
15 changed files with 44 additions and 42 deletions

View file

@ -578,14 +578,13 @@ inSpellDocumentWithTag:(int)tag
- _forget: (id)sender
{
NSString *word = [_wordField stringValue];
BOOL result = NO;
// Call the server and remove the word from the learned
// list.
NS_DURING
{
result = [[self _serverProxy] _forgetWord: word
inDictionary: _language];
[[self _serverProxy] _forgetWord: word
inDictionary: _language];
}
NS_HANDLER
{