-
Notifications
You must be signed in to change notification settings - Fork 19
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
Laborarium 2 #25
base: master
Are you sure you want to change the base?
Laborarium 2 #25
Conversation
…ava -> src/main/java/edu/kis/vh/nursery/DefaultCountingOutRhymer.java modified: src/main/java/edu/kis/vh/nursery/DefaultCountingOutRhymer.java modified: src/main/java/edu/kis/vh/nursery/FIFORhymer.java modified: src/main/java/edu/kis/vh/nursery/HanoiRhymer.java modified: src/main/java/edu/kis/vh/nursery/factory/DefaultRhymersFactory.java modified: src/main/java/edu/kis/vh/nursery/factory/Rhymersfactory.java modified: src/test/java/edu/kis/vh/nursery/RhymersDemo.java modified: src/test/java/edu/kis/vh/nursery/RhymersJUnitTest.java
with '#' will be ignored, and an empty message aborts the commit. On branch master Your branch is up to date with 'origin/master'. Changes to be committed: modified: src/main/java/edu/kis/vh/nursery/DefaultCountingOutRhymer.java modified: src/main/java/edu/kis/vh/nursery/FIFORhymer.java modified: src/main/java/edu/kis/vh/nursery/HanoiRhymer.java modified: src/main/java/edu/kis/vh/nursery/factory/DefaultRhymersFactory.java modified: src/main/java/edu/kis/vh/nursery/factory/Rhymersfactory.java modified: src/test/java/edu/kis/vh/nursery/RhymersDemo.java modified: src/test/java/edu/kis/vh/nursery/RhymersJUnitTest.java
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.
2 pts
3.1.4 was done incorrectly. Tips in comments.
|
||
import edu.kis.vh.nursery.Generate; | ||
|
||
public class IntArrayStack implements Generate { |
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.
IntArrayStack should have common interface with IntLinkedList not Default...Ryhmer.
package edu.kis.vh.nursery; | ||
import storage.IntLinkedList; | ||
|
||
public class DefaultCountingOutRhymer implements Generate { |
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.
Extracting Interface for Rhymers was not the task. Is Generate commited?
|
||
private IntLinkedList intLinkList = new IntLinkedList(); | ||
|
||
public DefaultCountingOutRhymer(IntLinkedList intLinkList) { |
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.
Only IntLinkedList can be used here. The goal was to enable using IntArrayStack and IntLinkedList.
Waiting for requested changes! |
No description provided.