1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 12:55:40 +02:00

*** empty log message ***

This commit is contained in:
John Camelon 2005-07-07 13:52:55 +00:00
parent b4926ba45a
commit c783685b39
2 changed files with 2 additions and 5 deletions

View file

@ -33,7 +33,7 @@ public abstract class IndexerJob2 implements IIndexJob {
protected IIndex fProjectIndex = null; protected IIndex fProjectIndex = null;
protected ICDTIndexer fSourceIndexer = null; protected ICDTIndexer fSourceIndexer = null;
public static final String FAMILY= "BasicTypeIndexerJob"; //$NON-NLS-1$ public static final String FAMILY= "IndexerJob2"; //$NON-NLS-1$
public IndexerJob2(IndexManager indexManager, IProject project) { public IndexerJob2(IndexManager indexManager, IProject project) {
fProject = project; fProject = project;

View file

@ -167,10 +167,7 @@ public class IndexerTypesJob2 extends IndexerJob2 {
offsetType = offsetType / 10; offsetType = offsetType / 10;
m *= 10; m *= 10;
} }
int mod = 1; int value = offset - ( offsetType * m );
while( offset / ( mod * 10 )> 0 )
mod *= 10;
int value = offset % mod;
// int value = Integer.valueOf(String.valueOf(offset).substring(1)).intValue(); // int value = Integer.valueOf(String.valueOf(offset).substring(1)).intValue();
TypeReference typeReference = null; TypeReference typeReference = null;