Skip to content

Commit

Permalink
Update checkstyle file (#338)
Browse files Browse the repository at this point in the history
* update checkstyle file

* remove suppression rule
  • Loading branch information
Cameron Mace authored Mar 5, 2018
1 parent 63f0329 commit 218d28e
Show file tree
Hide file tree
Showing 6 changed files with 492 additions and 160 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ public void onLocationLayerAction(LocationLayerPlugin locationLayerPlugin, Mapbo
SymbolLayer symbolLayer = mapboxMap.getLayerAs(FOREGROUND_LAYER);
assert symbolLayer != null;
assertThat(symbolLayer.getIconImage().getValue(), not(FOREGROUND_ICON));
}});
}
});
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

import butterknife.BindView;
import butterknife.ButterKnife;
import timber.log.Timber;

public class CompassListenerActivity extends AppCompatActivity implements OnMapReadyCallback {

Expand Down Expand Up @@ -50,7 +51,7 @@ public void onCompassChanged(float userHeading) {

@Override
public void onCompassAccuracyChange(int compassStatus) {
System.out.println(compassStatus);
Timber.v("Compass reading: %d", compassStatus);
}
});
}
Expand Down
Loading

0 comments on commit 218d28e

Please sign in to comment.