Skip to content

Missing a '.' in the filename #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 26, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/CH17.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ java.lang.Deprecated 是 J2SE 5.0 中標準的 Annotation 型態之一,它對

舉個例子來說,您可能定義一個 Something 類別,並在當中定義有 getSomething() 方法,而在這個類別被實際使用一段時間之後,您不建議開發人員使用 getSomething() 方法了,並想要將這個方法標示為 "deprecated",您可以使用 @Deprecated 在 getSomething() 方法加上標示。

#### **範例 17.3 Somethingjava**
#### **範例 17.3 Something.java**
```java
package onlyfun.caterpillar;

Expand Down