Removing deprecated DMAAP library
[policy/drools-pdp.git] / feature-healthcheck / src / test / resources / echo.drl
index 54847da..189c8a5 100644 (file)
@@ -3,6 +3,7 @@
  * ONAP
  * ================================================================================
  * Copyright (C) 2022 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2024 Nordix Foundation.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -29,7 +30,7 @@ end
 
 rule "ECHO"
 when
-    $o : Object();
+    $o : Object()
 then
     System.out.println("ECHO: " + $o.toString());
 end