IDEMPIERE-1749 Add event validator service support for ad window. Trivial - remove system.out.println line leftover from testing.
This commit is contained in:
parent
4f8e31bdd3
commit
e52d8c57ea
|
@ -28,7 +28,6 @@ public class WindowValidatorManager implements BundleActivator, ServiceTrackerCu
|
||||||
ServiceReference<WindowValidator> reference) {
|
ServiceReference<WindowValidator> reference) {
|
||||||
WindowValidator service = context.getService(reference);
|
WindowValidator service = context.getService(reference);
|
||||||
String uuid = (String) reference.getProperty("AD_Window_UU");
|
String uuid = (String) reference.getProperty("AD_Window_UU");
|
||||||
System.out.println("service="+service+" uuid="+uuid);
|
|
||||||
if (uuid == null || "*".equals(uuid)) {
|
if (uuid == null || "*".equals(uuid)) {
|
||||||
globalValidators.add(service);
|
globalValidators.add(service);
|
||||||
return service;
|
return service;
|
||||||
|
|
Loading…
Reference in New Issue