Skip to content

Commit

Permalink
Agregado la primer variabilidad de Eventos funcionando sin Fabrica
Browse files Browse the repository at this point in the history
  • Loading branch information
Sistemas authored and Sistemas committed May 22, 2018
1 parent 5be85d3 commit e49f65a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion comrueda-back/target/maven-archiver/pom.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Generated by Maven
#Tue May 22 00:49:45 COT 2018
#Tue May 22 00:56:58 COT 2018
version=1.0
groupId=com.comrueda
artifactId=comrueda-back
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ private static void ReadConfig(){
String ruta = new File("").getAbsolutePath();
misPropiedades = new Properties();
try {
misPropiedades.load(new BufferedReader(new FileReader(ruta + "/src/miAplicacion.properties")));
misPropiedades.load(new BufferedReader(new FileReader(ruta + "/miAplicacion.properties")));
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class Eventos implements IEventoResource{
EncuentroLogic encuentroLogic;

public void getEvento(){
String tipoEvento= "Salida";
String tipoEvento= "Encuentro";
if(tipoEvento.equals("Salida")){
delegado= new SalidaResource(salidaLogic);
}
Expand Down

0 comments on commit e49f65a

Please sign in to comment.