; Fix typo

* java/org/gnu/emacs/EmacsSafThread.java
(cacheDirectoryFromCursor): Fix typo.
This commit is contained in:
Stefan Kangas 2023-12-17 00:14:43 +01:00
parent 059ae68087
commit 2b08cc2d5f

View file

@ -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)