Skip to content

Commit e2c816e

Browse files
committed
Fixing the build
1 parent ca9b64b commit e2c816e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ja/overviews/reflection/thread-safety.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ title: スレッドセーフティ
1515
残念ながら Scala 2.10.0 でリリースされた現行の状態ではリフレクションはスレッドセーフではない。
1616
[SI-6240](https://issues.scala-lang.org/browse/SI-6240) が報告されているので、それを使って進捗を追跡したり、技術的な詳細を照会することができるが、ここに現状で分かっていることをまとめてみたい。
1717

18-
<span class="label success">NEW</span> Thread safety issues have been fixed in Scala 2.11.0-RC1, but we are going to keep this document available for now, since the problem still remains in the Scala 2.10.x series, and we currently don't have concrete plans on when the fix is going to be backported.
18+
<span class="label success">NEW</span>
19+
<p>Thread safety issues have been fixed in Scala 2.11.0-RC1, but we are going to keep this document available for now, since the problem still remains in the Scala 2.10.x series, and we currently don't have concrete plans on when the fix is going to be backported.</p>
1920

2021
現在の所、リフレクション関連では 2通りの競合状態があることが分かっている。第一はリフレクションの初期化
2122
(`scala.reflect.runtime.universe` が最初にアクセルされるときに呼ばれるコード)

overviews/reflection/thread-safety.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ Unfortunately, in its current state released in Scala 2.10.0, reflection is not
1818
There's a JIRA issue [SI-6240](https://issues.scala-lang.org/browse/SI-6240), which can be used to track our progress
1919
and to look up technical details, and here's a concise summary of the state of the art.
2020

21-
<span class="label success">NEW</span> Thread safety issues have been fixed in Scala 2.11.0-RC1, but we are going to keep this document available for now, since the problem still remains in the Scala 2.10.x series, and we currently don't have concrete plans on when the fix is going to be backported.
21+
<span class="label success">NEW</span>
22+
<p>Thread safety issues have been fixed in Scala 2.11.0-RC1, but we are going to keep this document available for now, since the problem still remains in the Scala 2.10.x series, and we currently don't have concrete plans on when the fix is going to be backported.</p>
2223

2324
Currently we know about two kinds of races associated with reflection. First of all, reflection initialization (the code that is called
2425
when `scala.reflect.runtime.universe` is accessed for the first time) cannot be safely called from multiple threads. Secondly, symbol

0 commit comments

Comments
 (0)