Skip to content

Commit fa7a67d

Browse files
committed
Fix refactoring missed
1 parent bb636ac commit fa7a67d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Core/JVM/ConstantPool.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ public function offsetGet($offset)
104104

105105
public function offsetSet($offset, $value)
106106
{
107-
throw new ReadOnlyException('You cannot rewrite datum. The Constant Cache is read-only.');
107+
throw new ReadOnlyException('You cannot rewrite datum. The Constant Pool is read-only.');
108108
}
109109

110110
public function offsetUnset($offset)
111111
{
112-
throw new ReadOnlyException('You cannot rewrite datum. The Constant Cache is read-only.');
112+
throw new ReadOnlyException('You cannot rewrite datum. The Constant Pool is read-only.');
113113
}
114114
}

0 commit comments

Comments
 (0)