File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
src/main/java/de/unknownreality/dataframe Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 4848 */
4949public class DataFrame implements DataContainer <DataFrameHeader , DataRow > {
5050 private static final Logger log = LoggerFactory .getLogger (DataFrame .class );
51- public static final String PRIMARY_INDEX_NAME = "primaryKey" ;
5251 private int size ;
5352 private final Map <String , DataFrameColumn > columnsMap = new LinkedHashMap <>();
5453 private final LinkedHashSet <DataFrameColumn > columnList = new LinkedHashSet <>();
@@ -101,7 +100,7 @@ public DataFrame setPrimaryKey(DataFrameColumn... cols) {
101100 * @return <tt>self</tt> for method chaining
102101 */
103102 public DataFrame removePrimaryKey () {
104- indices .removeIndex (PRIMARY_INDEX_NAME );
103+ indices .removeIndex (Indices . PRIMARY_KEY_NAME );
105104 return this ;
106105 }
107106
You can’t perform that action at this time.
0 commit comments