Este site funciona melhor com JavaScript.
Página inicial
Ajuda
Acessar
ben
/
goldfish
espelhamento de
https://github.com/earwig/goldfish
Observar
1
Favorito
1
Fork
0
Código
Versões
0
Atividade
Ver código fonte
Patch.toString() now works better with more than 2 states
master
Josh Hofing
12 anos atrás
pai
fff9117576
commit
783d52b0cb
1 arquivos alterados
com
1 adições
e
1 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+1
-1
src/Patch.java
+ 1
- 1
src/Patch.java
Ver arquivo
@@ -46,7 +46,7 @@ public class Patch {
}
public String toString() {
return _label + " " + ((_state ==
1) ? "1" : "."
);
return _label + " " + ((_state ==
0) ? "." : _state
);
}
public Patch[] get4Neighbors() {
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar