Fixed insert Type

This commit is contained in:
JanUlrich 2014-07-16 16:50:21 +02:00
parent df67185b45
commit 26d3a89fd9

View File

@ -66,17 +66,8 @@ public class TypeInsertSet {
*/
public String insertType(TypeInsertPoint tip, String fileContent){
TypePatchJob tpj = new TypePatchJob();
/*
int additionalOffset = 0;
String ret = fileContent;
JavaCodeResult unresolvedTPHs = tip.patch(ret, additionalOffset);
for(TypePlaceholder tph : unresolvedTPHs.getUnresolvedTPH()){
GenericTypeInsertPoint genericTIP = new GenericTypeInsertPoint(tip.getGenericTypeVarInsertNode(),tph,tip.getResultSet());
tpj.add(genericTIP);
}
*/
tpj.add(tip);
this.insertType(tip, tpj);
return tpj.run(fileContent);
}