-
Notifications
You must be signed in to change notification settings - Fork 22
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
#38: Refactor the Manifests class to an immutable #43
Conversation
Job #43 is now in scope, role is |
@@ -40,15 +41,67 @@ | |||
* @since 1.1 | |||
* @see Manifests | |||
*/ | |||
public interface MfMap extends Map<String, String> { | |||
public interface MfMap { |
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.
@proshin-roman Maybe it's not a good idea to change the public interface of classes that are already in production? Also, what do we gain from this?
@proshin-roman see my comment. Also, what was the problem you were solving? What was wrong? |
@rultor merge |
Job |
The job #43 is now out of scope |
I've made Manifests file immutable. As well I added
asMap()
method that returns a copy of an internal map of attributes. MethodkeySet()
returns a copy of keys set too.