Index: trunk/ab5.0/abdev/BasicCompiler_Common/include/Class.h
===================================================================
--- trunk/ab5.0/abdev/BasicCompiler_Common/include/Class.h	(revision 537)
+++ trunk/ab5.0/abdev/BasicCompiler_Common/include/Class.h	(revision 538)
@@ -476,6 +476,5 @@
 public:
 	Classes()
-		: pCompilingMethod( NULL )
-		, pStringClass( NULL )
+		: pStringClass( NULL )
 		, pObjectClass( NULL )
 		, pInterfaceInfo( NULL )
@@ -504,17 +503,5 @@
 	const CClass *Find( const std::string &fullName ) const;
 
-
-	/////////////////////////////
-	// 現在コンパイル中の情報
-	/////////////////////////////
-private:
-	const CMethod *pCompilingMethod;
-public:
 	void StartCompile( const UserProc *pUserProc );
-
-	//現在コンパイル中のメソッド情報を取得
-	const CMethod *GetNowCompilingMethodInfo(){
-		return pCompilingMethod;
-	}
 
 
Index: trunk/ab5.0/abdev/BasicCompiler_Common/src/Class.cpp
===================================================================
--- trunk/ab5.0/abdev/BasicCompiler_Common/src/Class.cpp	(revision 537)
+++ trunk/ab5.0/abdev/BasicCompiler_Common/src/Class.cpp	(revision 538)
@@ -1166,15 +1166,4 @@
 			}
 		}
-
-		pCompilingMethod = pParentClass->GetDynamicMethodOrInterfaceMethod( pUserProc );
-		if( !pCompilingMethod ){
-			pCompilingMethod = pParentClass->GetStaticMethods().GetMethodPtr( pUserProc );
-			if( !pCompilingMethod ){
-				compiler.errorMessenger.OutputFatalError();
-			}
-		}
-	}
-	else{
-		pCompilingMethod = NULL;
 	}
 }
