This website works better with JavaScript.
首頁
說明
登入
ben
/
goldfish
镜像来自
https://github.com/earwig/goldfish
關註
1
收藏
1
複製
0
程式碼
版本發佈
0
Activity
瀏覽代碼
Patch.clone() takes a Grid.
master
Ben Kurtovic
12 年之前
父節點
8e46e50d33
當前提交
fcdb30a1f7
共有
1 個文件被更改
,包括
2 次插入
和
2 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
src/Patch.java
+ 2
- 2
src/Patch.java
查看文件
@@ -71,7 +71,7 @@ public class Patch {
return neighbors;
}
public Patch clone() {
return new Patch(
_
grid, _xcor, _ycor, _state, _label);
public Patch clone(
Grid grid
) {
return new Patch(grid, _xcor, _ycor, _state, _label);
}
}
Write
Preview
Loading…
取消
儲存