diff --git a/module/src/main/java/pl/clarin/converter/Ccl2Ne.java b/module/src/main/java/pl/clarin/converter/Ccl2Ne.java
index 5218a2151305a76cb000e8bc78e33aa2b8f34a72..794ccd5cfb77b6cff57390782b634aa8d4581577 100644
--- a/module/src/main/java/pl/clarin/converter/Ccl2Ne.java
+++ b/module/src/main/java/pl/clarin/converter/Ccl2Ne.java
@@ -34,7 +34,8 @@ public class Ccl2Ne {
         for (Sentence sent : ps.getSentences()) {
             LinkedHashSet<Annotation> anlist = sent.getChunks();
             for (Annotation anot : anlist) {
-                if (anot.getType().equals("nam")) {
+                //if (anot.getType().equals("nam")) 
+                {
                     String out = "";
                     boolean space_before = false;
                     for (int i = anot.getBegin(); i <= anot.getEnd(); i++) {