You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/03/29 08:55:50 UTC

svn commit: r759652 - /incubator/kato/trunk/org.apache.kato.common/src/com/ibm/dtfj/corereaders/DumpFactory.java

Author: spoole
Date: Sun Mar 29 08:55:50 2009
New Revision: 759652

URL: http://svn.apache.org/viewvc?rev=759652&view=rev
Log:
removed reference to nonexistent Windows Dump reader in DumpFactory.  

Modified:
    incubator/kato/trunk/org.apache.kato.common/src/com/ibm/dtfj/corereaders/DumpFactory.java

Modified: incubator/kato/trunk/org.apache.kato.common/src/com/ibm/dtfj/corereaders/DumpFactory.java
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato.common/src/com/ibm/dtfj/corereaders/DumpFactory.java?rev=759652&r1=759651&r2=759652&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato.common/src/com/ibm/dtfj/corereaders/DumpFactory.java (original)
+++ incubator/kato/trunk/org.apache.kato.common/src/com/ibm/dtfj/corereaders/DumpFactory.java Sun Mar 29 08:55:50 2009
@@ -26,9 +26,8 @@
 	public static ICoreFileReader createDumpForCore(ClosingFileReader file, boolean verbose) throws IOException {
 		// TODO try next format if there is an IOException thrown from the test
 		ICoreFileReader corefile = null;
-		if (NewWinDump.isSupportedDump(file)) {
-			corefile = NewWinDump.dumpFromFile(file);
-		} else if (NewElfDump.isSupportedDump(file)) {
+	
+	   if (NewElfDump.isSupportedDump(file)) {
 			corefile = NewElfDump.dumpFromFile(file, verbose);
 		} else if (NewAixDump.isSupportedDump(file)) {
 			corefile = NewAixDump.dumpFromFile(file);