mitm001 8 лет назад
Родитель
Сommit
c681e4400c
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/docs/asciidoc/jme3/advanced/multithreading.adoc

+ 1 - 1
src/docs/asciidoc/jme3/advanced/multithreading.adoc

@@ -29,9 +29,9 @@ public void rotateGeometry(final Geometry geo, final Quaternion rot) {
 [NOTE]
 ====
 This example does not fetch the returned value by calling `get()` on the Future object returned from `enqueue()`. This means that the example method `rotateGeometry()` will return immediately and will not wait for the rotation to be processed before continuing.
-====
 
 If the processing thread needs to wait or needs the return value then `get()` or the other methods in the returned Future object such as `isDone()` can be used.
+====
 
 First, make sure you know what <<jme3/advanced/application_states#,Application States>> and <<jme3/advanced/custom_controls#,Custom Controls>> are.