summaryrefslogtreecommitdiff
path: root/src/org
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-06-09 13:26:45 +0000
committerRich Hickey <richhickey@gmail.com>2006-06-09 13:26:45 +0000
commit87682184c3a32b61485c3e587eab3f3daebaf1eb (patch)
tree79e2c95e2db0946399808288e5162934f237b239 /src/org
parent7b244d43c7c52dfab7fef2d77073705aeac604cc (diff)
made Seq members final/readonly
Diffstat (limited to 'src/org')
-rw-r--r--src/org/clojure/runtime/PersistentArray.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/clojure/runtime/PersistentArray.java b/src/org/clojure/runtime/PersistentArray.java
index 7c8bf52f..06ae9195 100644
--- a/src/org/clojure/runtime/PersistentArray.java
+++ b/src/org/clojure/runtime/PersistentArray.java
@@ -110,8 +110,8 @@ static class EntryLink extends Entry{
}
static class Seq implements ISeq{
- PersistentArray p;
- int i;
+ final PersistentArray p;
+ final int i;
Seq(PersistentArray p, int i){
this.p = p;