Skip to content
Snippets Groups Projects
Commit 6a983f2c authored by Andrey Ruzhanskiy's avatar Andrey Ruzhanskiy
Browse files

changed Method name in SimpleMatrix.

parent bf835d4a
No related branches found
No related tags found
1 merge request!14Feat/braille print back end 4
......@@ -102,7 +102,11 @@ public final class BrailleCell6<T> {
return sb.toString();
}
public String toShortString(){
/**
*
* @return
*/
public String getBitRepresentationFromBool(){
StringBuilder sb = new StringBuilder();
for (int i = 0; i < mDots.length; i++) {
if(Boolean.parseBoolean(mDots[i].toString())) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment