Debugger: Ditch Dumper.stripClassTag

It doesn't seem to be needed anymore, and if it were, it'd be the
task of the back-end specific fromNativeType() functions to sanitize
type names.

Change-Id: I7c6af40aeacb2dbaaf73143e9fdcc1d866bf3f3d
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2016-09-30 13:56:46 +02:00
parent a215bdace4
commit 6913f90384
4 changed files with 15 additions and 29 deletions

View File

@@ -1522,7 +1522,7 @@ class Dumper:
def itemFormat(self, item):
format = self.formats.get(str(cleanAddress(item.value.address)))
if format is None:
format = self.typeformats.get(self.stripClassTag(str(item.value.type)))
format = self.typeformats.get(str(item.value.type))
return format
# Hex encoding operating on str or bytes, return str.