<div dir="ltr">Hello,<br>I use the last version of graphHopper from Git and In my app <br>I try to show the Instruction (Like Road Book) and  my code is :<br><br>.......<br> GHResponse resp = hopper.route(req);<br><br> InstructionList il = resp.getInstructions();<br> TranslationMap SINGLETON = new TranslationMap().doImport();<br> Translation trad = SINGLETON.getWithFallBack(Locale.US);<br>  And if i try this :<br> List<String> iList = il.createDescription(trad); I have an error because in the class instructionList.java i don't have the function " List<String> createDescription(Locale locale)  " ... <br>Please,How make?<br>   I follow <a href="https://github.com/graphhopper/graphhopper/blob/master/docs/core/routing.md">https://github.com/graphhopper/graphhopper/blob/master/docs/core/routing.md</a> and <a href="http://grepcode.com/file/repo1.maven.org/maven2/com.graphhopper/graphhopper/0.1/com/graphhopper/util/InstructionList.java/#InstructionList.createDescription%28java.util.Locale%29">http://grepcode.com/file/repo1.maven.org/maven2/com.graphhopper/graphhopper/0.1/com/graphhopper/util/InstructionList.java/#InstructionList.createDescription%28java.util.Locale%29</a><br>thank you               <br></div>