Skip to content

Commit

Permalink
access level of library classes
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaykale committed Sep 13, 2017
1 parent 537169a commit 5ee6aec
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ of this software and associated documentation files (the "Software"), to deal
SOFTWARE.
* */

public class HorizontalRecyclerViewAdapter extends RecyclerView.Adapter<HorizontalRecyclerViewAdapter.HorizontalRecyclerViewHolder> {
class HorizontalRecyclerViewAdapter extends RecyclerView.Adapter<HorizontalRecyclerViewAdapter.HorizontalRecyclerViewHolder> {


ArrayList<TimelineObject> list = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
* */
public class PicassoEngine implements ImageLoadingEngine {
class PicassoEngine implements ImageLoadingEngine {
@Override
public void onLoadImage(ImageView imageView, String uri) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ of this software and associated documentation files (the "Software"), to deal
SOFTWARE.
* */

public class VerticalRecyclerViewAdapter extends RecyclerView.Adapter<VerticalRecyclerViewAdapter.VerticalRecyclerViewHolder> {
class VerticalRecyclerViewAdapter extends RecyclerView.Adapter<VerticalRecyclerViewAdapter.VerticalRecyclerViewHolder> {


ArrayList<String> list;
Expand Down Expand Up @@ -70,6 +70,8 @@ public void onBindViewHolder(VerticalRecyclerViewHolder holder, int position) {

}



@Override
public int getItemCount() {
return TimeLineConfig.headerList.size();
Expand Down

0 comments on commit 5ee6aec

Please sign in to comment.