Github user keith-turner commented on a diff in the pull request:

    
https://github.com/apache/incubator-fluo-website/pull/18#discussion_r79888429
  
    --- Diff: src/main/java/ft/Main.java ---
    @@ -0,0 +1,44 @@
    +package ft;
    +
    +import java.io.File;
    +import java.nio.file.Files;
    +
    +// Normaly using * with imports is a bad practice, however in this case it 
makes experimenting with
    +// Fluo easier.
    +import org.apache.fluo.api.client.*;
    +import org.apache.fluo.api.config.*;
    +import org.apache.fluo.api.data.*;
    +import org.apache.fluo.api.mini.MiniFluo;
    +import org.apache.fluo.api.observer.*;
    +
    +public class Main {
    +  public static void main(String[] args) throws Exception {
    +
    +    String tmpDir = Files.createTempDirectory(new File("target").toPath(), 
"mini").toString();
    --- End diff --
    
    Ok I see.  I made that change.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to