-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(release): update dev build files ( 223.228 )
- Loading branch information
1 parent
bc9ec96
commit 016f824
Showing
55 changed files
with
8,095 additions
and
8,048 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 10 additions & 6 deletions
16
plugin-dev-raw/zh/inspectionDescriptions/InfiniteRecursion.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
<html> | ||
<body> | ||
報告具有無限遞歸的方法和函式。 | ||
報告除非拋出異常否則無限呼叫自身的方法。 | ||
<p> | ||
此檢查報告的方法不能正常返回。 | ||
雖然此類別行為可能是有意為之,但在許多情況下,可能純屬疏忽。 | ||
</p> | ||
<p><b>範例:</b></p> | ||
<pre><code> | ||
int factorial(int n) { | ||
return n * factorial(n - 1); | ||
} | ||
</code></pre> | ||
<pre><code> int baz() { | ||
return baz(); | ||
}</code></pre> | ||
<!-- tooltip end --> | ||
|
||
</body> | ||
</html> |
16 changes: 16 additions & 0 deletions
16
plugin-dev-raw/zh/inspectionDescriptions/RedundantCast.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
<html> | ||
<body> | ||
報告不必要的轉換表達式。 | ||
|
||
<p>範例:</p> | ||
<pre><code> | ||
static Object toObject(String s) { | ||
return (Object) s; | ||
} | ||
</code></pre> | ||
<!-- tooltip end --> | ||
<p> | ||
使用下面的複選框可以忽略澄清轉換,例如應為 <code>Object</code> 的集合呼叫中的轉換: | ||
<pre><code> | ||
static void removeFromList(List<String> l, Object o) { | ||
l.remove((String)o); | ||
} | ||
</code></pre> | ||
|
||
</body> | ||
</html> |
7 changes: 5 additions & 2 deletions
7
plugin-dev-raw/zh/intentionDescriptions/AddNameToArgumentIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
<html><body> | ||
<p>將命名實參用作當前和後續的實參。</p></body></html> | ||
<html> | ||
<body> | ||
向函式的所選實參新增參數名稱。 | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 1 addition & 5 deletions
6
...in-dev-raw/zh/intentionDescriptions/DefineImplicitVariableIntentionLocal/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
<html> | ||
<body> | ||
在當前模板檔案的註釋中宣告隱式 FreeMarker 變數 | ||
</body> | ||
</html> | ||
在當前模板檔案的註釋中宣告隱式 Velocity 變數。 |
7 changes: 1 addition & 6 deletions
7
...aw/zh/intentionDescriptions/DefineImplicitVariableIntentionLocalExternal/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
<html> | ||
<body> | ||
在外部檔案中宣告隱式 FreeMarker 變數。 | ||
當前模組中的每個 FreeMarker 模板都可以使用此變數。 | ||
</body> | ||
</html> | ||
在外部檔案中宣告隱式 Velocity 變數,以避免原始檔與 IntelliJ IDEA 特定的註釋混淆。 |
6 changes: 1 addition & 5 deletions
6
...v-raw/zh/intentionDescriptions/DefineImplicitVariableIntentionModuleWide/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
<html> | ||
<body> | ||
在外部檔案中宣告隱式 FreeMarker 變數,以避免原始檔與 IntelliJ IDEA 特定的註釋混淆。 | ||
</body> | ||
</html> | ||
在外部檔案中宣告隱式 Velocity 變數。 該變數將在當前模組的每個 Velocity 模板中可用。 |
4 changes: 2 additions & 2 deletions
4
plugin-dev-raw/zh/intentionDescriptions/ExpandBooleanIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<html> | ||
<body> | ||
<p>用等效的 <b>if-then-else</b> 語句取代使用布爾表達式的 <b>return</b> 語句。</p> | ||
將使用 <code>boolean</code> 表達式的宣告、<code>return</code> 或賦值語句取代為等效的 <code>if</code> <code>else</code> 語句。 | ||
</body> | ||
</html> | ||
</html> |
4 changes: 2 additions & 2 deletions
4
plugin-dev-raw/zh/intentionDescriptions/ImportAllMembersIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<html> | ||
<body> | ||
<p>使用萬用字元語法匯入軟體套件或類別的所有內容,並用非限定的引用取代所有出現的內容。</p> | ||
新增所選引用的所有成員的匯入,並移除該引用在檔案中的顯式用法。 | ||
</body> | ||
</html> | ||
</html> |
4 changes: 1 addition & 3 deletions
4
plugin-dev-raw/zh/intentionDescriptions/InvertIfConditionIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
<html> | ||
<body> | ||
<p>使用內部條件倒置的 <code>if</code> 語句取代另一個 <code>if</code> 語句。 | ||
此意圖對於例如簡化使用多個嵌套 <code>if</code> 語句的複雜程式碼很有用。 | ||
</p> | ||
反轉 <code>if</code> 條件表達式。 | ||
</body> | ||
</html> |
4 changes: 2 additions & 2 deletions
4
plugin-dev-raw/zh/intentionDescriptions/MergeElseIfIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<html> | ||
<body> | ||
<p>如果 <b>if-else</b> 語句的 <b>else</b> 分支僅包含嵌套的 <b>if-else</b> 語句,則合併 <b>else</b> 。</p> | ||
如果此 <code>else</code> 分支僅包含嵌套的 <code>if...else</code> 語句,則合併 <code>if...else</code> 語句的 <code>else</code> 分支。 | ||
</body> | ||
</html> | ||
</html> |
7 changes: 4 additions & 3 deletions
7
plugin-dev-raw/zh/intentionDescriptions/NegateComparisonIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
<html> | ||
<body> | ||
<p>將布爾比較表達式 <b>a</b> <small>op</small> <b>b</b> 轉換為 !( <b>a</b> <small>negop</small> <b>b</b> )。 | ||
其中 <small>op</small> 和 <small>negop</small> 是互逆的比較運算符,如 == 和 !=。</p> | ||
將布爾比較表達式 <code><b>a</b> op <b>b</b></code> 轉換為 <code>!( <b>a</b> negop <b>b</b>)</code>。 | ||
|
||
<p>在這個表達式中,<code>op</code> 和 <code>negop</code> 是互逆比較運算符,如 <code>==</code> 和 <code>!=</code>。</p> | ||
</body> | ||
</html> | ||
</html> |
3 changes: 1 addition & 2 deletions
3
...n-dev-raw/zh/intentionDescriptions/RemoveUnnecessaryParenthesesIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
<html> | ||
<body> | ||
<p>從表達式中移除不必要的圓括號。 | ||
當禁用<b>不必要的圓括號</b>檢查時,此功能可用。</p> | ||
移除不必要的圓括號。 | ||
</body> | ||
</html> |
4 changes: 2 additions & 2 deletions
4
plugin-dev-raw/zh/intentionDescriptions/SplitElseIfIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<html> | ||
<body> | ||
<p>拆分 <b> if-else</b> 語句的 <b>else</b> 分支。</p> | ||
拆分 <code> if-else</code> 語句的 <code>else</code> 分支。 | ||
</body> | ||
</html> | ||
</html> |
4 changes: 2 additions & 2 deletions
4
plugin-dev-raw/zh/intentionDescriptions/SplitIfIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<html> | ||
<body> | ||
<p>將條件中包含合取運算的 <b>if</b> 語句轉換為兩個包含簡化條件的嵌套 <b>if</b> 語句。</p> | ||
將條件中包含合取運算的 if 語句轉換為兩個包含簡化條件的嵌套 if 語句。 | ||
</body> | ||
</html> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.