Skip to content

Commit 55e02c4

Browse files
removed done todo comments
1 parent 0a88f26 commit 55e02c4

2 files changed

Lines changed: 0 additions & 7 deletions

File tree

AndroidBootstrap/src/main/java/com/beardedhen/androidbootstrap/BootstrapProgressBar.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -589,12 +589,6 @@ public void setMaxProgress(int newMaxProgress) {
589589
}
590590
invalidate();
591591
BootstrapProgressBarGroup parent = (BootstrapProgressBarGroup) getParent();
592-
// if (parent != null) {
593-
// if (parent instanceof BootstrapProgressBarGroup) {
594-
// BootstrapProgressBarGroup parentGroup = (BootstrapProgressBarGroup) parent;
595-
// parentGroup.onProgressChanged(this);
596-
// } TODO: is this nessasery? it curerntly causes an infinate loop
597-
// }
598592
}
599593

600594
void setCornerRounding(boolean left, boolean right){

sample/src/main/java/com/fractalwrench/androidbootstrap/sample/BootstrapProgressBarGroupExample.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ void onRoundClick(){
5858

5959
@OnClick(R.id.example_progress_bar_group_progress)
6060
void onClickProgressChange(){
61-
//TODO randomly select one of 2 bars, set progress between 10-40
6261
Random rand = new Random();
6362
int progress = rand.nextInt(30) + 10;
6463
switch(rand.nextInt(2)){

0 commit comments

Comments
 (0)