Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
ben
/
goldfish
réplica de
https://github.com/earwig/goldfish
Seguir
1
Destacar
1
Fork
0
Código
Lanzamientos
0
Actividad
Explorar el Código
Patch.toString() now works better with more than 2 states
master
Josh Hofing
hace 12 años
padre
fff9117576
commit
783d52b0cb
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-1
src/Patch.java
+ 1
- 1
src/Patch.java
Ver fichero
@@ -46,7 +46,7 @@ public class Patch {
}
public String toString() {
return _label + " " + ((_state ==
1) ? "1" : "."
);
return _label + " " + ((_state ==
0) ? "." : _state
);
}
public Patch[] get4Neighbors() {
Escribir
Vista previa
Cargando…
Cancelar
Guardar