This website works better with JavaScript.
首頁
說明
登入
ben
/
goldfish
镜像来自
https://github.com/earwig/goldfish
關註
1
收藏
1
複製
0
程式碼
版本發佈
0
Activity
瀏覽代碼
Patch.toString() now works better with more than 2 states
master
Josh Hofing
12 年之前
父節點
fff9117576
當前提交
783d52b0cb
共有
1 個文件被更改
,包括
1 次插入
和
1 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/Patch.java
+ 1
- 1
src/Patch.java
查看文件
@@ -46,7 +46,7 @@ public class Patch {
}
public String toString() {
return _label + " " + ((_state ==
1) ? "1" : "."
);
return _label + " " + ((_state ==
0) ? "." : _state
);
}
public Patch[] get4Neighbors() {
Write
Preview
Loading…
取消
儲存