Skip to content

Commit cd0ad33

Browse files
authored
Merge pull request #461 from AppDevNext/MoreCosmetic
Don't extend of nullable Entry
2 parents 84d12fc + c44c22d commit cd0ad33

File tree

1 file changed

+1
-1
lines changed
  • MPChartLib/src/main/java/com/github/mikephil/charting/data

1 file changed

+1
-1
lines changed

MPChartLib/src/main/java/com/github/mikephil/charting/data/BaseDataSet.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import com.github.mikephil.charting.utils.Utils
1717
* This is the base dataset of all DataSets. It's purpose is to implement critical methods
1818
* provided by the IDataSet interface.
1919
*/
20-
abstract class BaseDataSet<T : Entry?>() : IDataSet<T> {
20+
abstract class BaseDataSet<T : Entry>() : IDataSet<T> {
2121
/**
2222
* List representing all colors that are used for this DataSet
2323
*/

0 commit comments

Comments
 (0)