diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index c5c09627ec861c8b05ed69cfa06e3d192a946baf..8090c44d913f0eb70ddf45c1ffca7f05323c012c 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -1865,17 +1865,6 @@ def save_single(operator, scene, filepath="",
                     i += 1
                 fw('\n\t\t}')
 
-        for v in me_vertices:
-            if i == -1:
-                fw('%.6f,%.6f,%.6f' % v.co[:])
-                i = 0
-            else:
-                if i == 7:
-                    fw('\n\t\t')
-                    i = 0
-                fw(',%.6f,%.6f,%.6f' % v.co[:])
-            i += 1
-
         fw('\n\t}')
 
     def write_group(name):