Skip to content
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

rebuild golden resource from survivorship on link edit #5250

Merged
Prev Previous commit
Next Next commit
cleanup
  • Loading branch information
leif stawnyczy committed Aug 31, 2023
commit 4ebd3cf5cf53d49dfe2a38cff1bf9940c989af59
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,6 @@ Snap.*
.vscode


/database/
/database*/
/activemq-data/
/.run/
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.Lazy;

@Configuration
@Import({
Expand Down Expand Up @@ -123,7 +122,6 @@ IBlockRuleEvaluationSvc blockRuleEvaluationSvc(
}

@Bean
@Lazy
MdmEidUpdateService eidUpdateService() {
return new MdmEidUpdateService();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
import java.net.URL;
import java.nio.charset.StandardCharsets;

/**
* This is a test object that can be used to wrap a string
* that could be injected as a spring-resource at bootup.
*/
public class TestResource extends AbstractResource {

public static Resource createFromString(String theTxt) {
Expand Down
Loading