diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-06-09 13:26:45 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-06-09 13:26:45 +0000 |
commit | 87682184c3a32b61485c3e587eab3f3daebaf1eb (patch) | |
tree | 79e2c95e2db0946399808288e5162934f237b239 /src/cli/runtime/PersistentArray.cs | |
parent | 7b244d43c7c52dfab7fef2d77073705aeac604cc (diff) |
made Seq members final/readonly
Diffstat (limited to 'src/cli/runtime/PersistentArray.cs')
-rw-r--r-- | src/cli/runtime/PersistentArray.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/runtime/PersistentArray.cs b/src/cli/runtime/PersistentArray.cs index 71002269..cec59dcc 100644 --- a/src/cli/runtime/PersistentArray.cs +++ b/src/cli/runtime/PersistentArray.cs @@ -119,8 +119,8 @@ internal class EntryLink : Entry }
internal class Seq : ISeq{
- PersistentArray p;
- int i;
+ readonly PersistentArray p;
+ readonly int i;
internal Seq(PersistentArray p, int i){
this.p = p;
|