aboutsummaryrefslogtreecommitdiffstats
path: root/java/org
diff options
context:
space:
mode:
authorStefan Kangas2023-12-17 00:14:43 +0100
committerStefan Kangas2023-12-17 00:14:56 +0100
commit2b08cc2d5f17327f54d3b2c7b790ef34dd015925 (patch)
tree572dc60a89873139a413554f625965b14353f115 /java/org
parent059ae68087bf4498a0529d07319f5c5c2671cad7 (diff)
downloademacs-2b08cc2d5f17327f54d3b2c7b790ef34dd015925.tar.gz
emacs-2b08cc2d5f17327f54d3b2c7b790ef34dd015925.zip
; Fix typo
* java/org/gnu/emacs/EmacsSafThread.java (cacheDirectoryFromCursor): Fix typo.
Diffstat (limited to 'java/org')
-rw-r--r--java/org/gnu/emacs/EmacsSafThread.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/org/gnu/emacs/EmacsSafThread.java b/java/org/gnu/emacs/EmacsSafThread.java
index 8bb84126b07..333c3a29790 100644
--- a/java/org/gnu/emacs/EmacsSafThread.java
+++ b/java/org/gnu/emacs/EmacsSafThread.java
@@ -504,7 +504,7 @@ public final class EmacsSafThread extends HandlerThread
504 cacheDirectoryFromCursor (CacheToplevel toplevel, String documentId, 504 cacheDirectoryFromCursor (CacheToplevel toplevel, String documentId,
505 Cursor cursor) 505 Cursor cursor)
506 { 506 {
507 CacheEntry entry, constitutent; 507 CacheEntry entry, constituent;
508 int nameColumn, idColumn, typeColumn; 508 int nameColumn, idColumn, typeColumn;
509 String id, name, type; 509 String id, name, type;
510 DocIdEntry idEntry; 510 DocIdEntry idEntry;
@@ -561,8 +561,8 @@ public final class EmacsSafThread extends HandlerThread
561 561
562 /* Otherwise, create a new cache entry comprised of its 562 /* Otherwise, create a new cache entry comprised of its
563 type. */ 563 type. */
564 constitutent = new CacheEntry (); 564 constituent = new CacheEntry ();
565 constitutent.type = type; 565 constituent.type = type;
566 toplevel.idCache.put (documentId, entry); 566 toplevel.idCache.put (documentId, entry);
567 } 567 }
568 catch (Exception e) 568 catch (Exception e)