Skip to content

Commit cdf9657

Browse files
Algumas alterações no código
1 parent 39eb960 commit cdf9657

28 files changed

+65
-157
lines changed
536 Bytes
Binary file not shown.

.idea/codeStyles/Project.xml

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 0 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

app/objectbox-models/default.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@
6868
{
6969
"id": "7:7084206373595185881",
7070
"name": "mediaPessoal"
71-
},
72-
{
73-
"id": "8:1837106450894998806",
74-
"name": "qtdProvas"
7571
}
7672
],
7773
"relations": []
@@ -145,7 +141,8 @@
145141
"retiredIndexUids": [],
146142
"retiredPropertyUids": [
147143
6948804081037006931,
148-
6072101635504875033
144+
6072101635504875033,
145+
1837106450894998806
149146
],
150147
"retiredRelationUids": [],
151148
"version": 1

app/objectbox-models/default.json.bak

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,6 @@
9393
{
9494
"id": "4:5389582210353279894",
9595
"name": "notaBimestral"
96-
},
97-
{
98-
"id": "5:6072101635504875033",
99-
"name": "recuperacao"
10096
}
10197
],
10298
"relations": []
@@ -148,7 +144,8 @@
148144
"retiredEntityUids": [],
149145
"retiredIndexUids": [],
150146
"retiredPropertyUids": [
151-
6948804081037006931
147+
6948804081037006931,
148+
6072101635504875033
152149
],
153150
"retiredRelationUids": [],
154151
"version": 1

app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@
8383
android:name=".activities.CadastroAlunoActivity"
8484
android:label="@string/cadastrar_aluno" />
8585

86-
<activity android:name=".activities.CadastroRecuperacaoActivity"></activity>
8786
</application>
8887

8988
</manifest>

app/src/main/java/com/app/boletim/activities/AgendamentosActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import io.objectbox.Box;
3232

3333
public class AgendamentosActivity extends AppCompatActivity {
34-
@BindView(R.id.rv_lista_agendamentos) RecyclerView recyclerAgendamentos;
34+
@BindView(R.id.rv_lista_agendamentos) protected RecyclerView recyclerAgendamentos;
3535

3636
private Box<Agendamento> agendamentoBox;
3737
private long idAlunoLogado;

app/src/main/java/com/app/boletim/activities/CadastroAgendamentosActivity.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
import io.objectbox.Box;
2929

3030
public class CadastroAgendamentosActivity extends AppCompatActivity {
31-
@BindView(R.id.calendario) MaterialCalendarView materialCalendarView;
32-
@BindView(R.id.edit_titulo) EditText editTitulo;
33-
@BindView(R.id.edit_hora) EditText editHora;
31+
@BindView(R.id.calendario) protected MaterialCalendarView materialCalendarView;
32+
@BindView(R.id.edit_titulo) protected EditText editTitulo;
33+
@BindView(R.id.edit_hora) protected EditText editHora;
3434

3535
private Box<Agendamento> agendamentoBox;
3636
private Agendamento agendamento;

0 commit comments

Comments
 (0)