Jane1234567 / sqlitepersistentobjects

Automatically exported from code.google.com/p/sqlitepersistentobjects
0 stars 0 forks source link

Local shadowing of className #57

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
In SQLPersistantObject.m className is being locally shadowed.

In line 826:
NSString *className = [propType substringWithRange:NSMakeRange(2, [propType 
length]-3)];

The shadowing declaration is in line 794:
NSString *className = propType;

Original issue reported on code.google.com by mhorvath...@gmail.com on 24 Mar 2009 at 3:04