Use a List instead of a Set for listEvents()
[lttng-ust-java-tests.git] / lttng-tools-java / src / main / java / org / lttng / tools / ILttngSession.java
index 704705f25f99b1a9746570adbb469b90fb4e77c6..414e3fb03c19cd9dd42699f4c65f369e85885748 100644 (file)
@@ -19,7 +19,6 @@
 package org.lttng.tools;
 
 import java.util.List;
-import java.util.Set;
 
 /**
  * Java representation of a LTTng tracing session.
@@ -156,7 +155,7 @@ public interface ILttngSession extends AutoCloseable {
      *
      * @return The list of available events
      */
-    Set<String> listEvents();
+    List<String> listEvents();
 
     /**
      * Enable an application context with the provided retriever/context names.
This page took 0.023478 seconds and 4 git commands to generate.