; Fix typo
* java/org/gnu/emacs/EmacsSafThread.java (cacheDirectoryFromCursor): Fix typo.
This commit is contained in:
parent
059ae68087
commit
2b08cc2d5f
1 changed files with 3 additions and 3 deletions
|
@ -504,7 +504,7 @@ private static final class CacheEntry
|
|||
cacheDirectoryFromCursor (CacheToplevel toplevel, String documentId,
|
||||
Cursor cursor)
|
||||
{
|
||||
CacheEntry entry, constitutent;
|
||||
CacheEntry entry, constituent;
|
||||
int nameColumn, idColumn, typeColumn;
|
||||
String id, name, type;
|
||||
DocIdEntry idEntry;
|
||||
|
@ -561,8 +561,8 @@ private static final class CacheEntry
|
|||
|
||||
/* Otherwise, create a new cache entry comprised of its
|
||||
type. */
|
||||
constitutent = new CacheEntry ();
|
||||
constitutent.type = type;
|
||||
constituent = new CacheEntry ();
|
||||
constituent.type = type;
|
||||
toplevel.idCache.put (documentId, entry);
|
||||
}
|
||||
catch (Exception e)
|
||||
|
|
Loading…
Add table
Reference in a new issue