-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Movie recommender class implemented #76
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please clean up your PR, this is not ready to be reviewed
.idea/$PRODUCT_WORKSPACE_FILE$
Outdated
@@ -0,0 +1,19 @@ | |||
<?xml version="1.0" encoding="UTF-8"?> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The .idea files should be ignored
pom.xml
Outdated
@@ -26,5 +26,6 @@ | |||
<version>4.7</version> | |||
<scope>test</scope> | |||
</dependency> | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are you making this empty line change?
contador++; | ||
} | ||
}catch (IndexOutOfBoundsException ioub){ | ||
// System.out.println("LLEGO VACIO EXCEPTION"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you need to remove this comment and handle the exception
|
||
|
||
int getTotalReviews(String archivo) throws FileNotFoundException, IOException { | ||
String cadena; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please do not mix spanish and english
char slash; | ||
char u; | ||
int contador = 0; | ||
//char e; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a comment is not a way to temporally remove code, please use git instead
…ews as well as for sending recommendations to a specific user
The movie recommender, all test successful