Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-41161] replace old config object
  • Loading branch information
imod committed Jan 18, 2017
1 parent f17be6f commit 18e445c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
Expand Up @@ -105,6 +105,7 @@ public Config getById(String id) {

@Override
public void save(Config config){
configs.remove(config);
configs.add(config);
save();
}
Expand Down
Expand Up @@ -63,6 +63,7 @@ public Config getById(String id) {

@Override
public void save(Config config) {
configs.remove(config);
configs.add(config);
try {
getOwner().save();
Expand Down
@@ -0,0 +1,7 @@
package org.jenkinsci.plugins.configfiles;

/**
* Created by domi on 18/01/17.
*/
public class ConfigFileStoreTest {
}

3 comments on commit 18e445c

@varyvol
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@imod do you plan releasing this soon?

@imod
Copy link
Member Author

@imod imod commented on 18e445c Jan 19, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@varyvol yes, today

@varyvol
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@imod that's great. Thanks!

Please sign in to comment.