remove room stuff

This commit is contained in:
Sem van der Hoeven
2020-12-17 10:32:28 +01:00
parent 5edf50c808
commit 6a07ce77f0
17 changed files with 6 additions and 448 deletions

View File

@@ -2,16 +2,11 @@ package com.a1.nextlocation.data;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.room.ColumnInfo;
import androidx.room.Entity;
import androidx.room.PrimaryKey;
import org.jetbrains.annotations.NotNull;
@Entity(tableName = "location")
public class Location {
@PrimaryKey
@NonNull
private String name;
@@ -22,7 +17,6 @@ public class Location {
private String coordinates;
private String description;
@ColumnInfo(name = "image_url")
@Nullable
private String imageUrl;