Author: sisbell
Date: Wed Mar 21 09:49:13 2007
New Revision: 520945

URL: http://svn.apache.org/viewvc?view=rev&rev=520945
Log:
Fixed NPE

Modified:
    
incubator/nmaven/branches/SI_IDE/components/dotnet-vendor/src/main/java/org/apache/maven/dotnet/vendor/impl/VendorInfoTransitionRuleFactory.java

Modified: 
incubator/nmaven/branches/SI_IDE/components/dotnet-vendor/src/main/java/org/apache/maven/dotnet/vendor/impl/VendorInfoTransitionRuleFactory.java
URL: 
http://svn.apache.org/viewvc/incubator/nmaven/branches/SI_IDE/components/dotnet-vendor/src/main/java/org/apache/maven/dotnet/vendor/impl/VendorInfoTransitionRuleFactory.java?view=diff&rev=520945&r1=520944&r2=520945
==============================================================================
--- 
incubator/nmaven/branches/SI_IDE/components/dotnet-vendor/src/main/java/org/apache/maven/dotnet/vendor/impl/VendorInfoTransitionRuleFactory.java
 (original)
+++ 
incubator/nmaven/branches/SI_IDE/components/dotnet-vendor/src/main/java/org/apache/maven/dotnet/vendor/impl/VendorInfoTransitionRuleFactory.java
 Wed Mar 21 09:49:13 2007
@@ -127,8 +127,8 @@
             public VendorInfoState process( VendorInfo vendorInfo )
             {
                 logger.debug( "NMAVEN-103-034: Entering State = Post Process" 
);
-                if ( vendorInfo.getExecutablePaths() == null ||
-                    vendorInfo.getExecutablePaths().size() == 0 && 
vendorInfoRepository.exists() )
+                if ( (vendorInfo.getExecutablePaths() == null ||
+                    vendorInfo.getExecutablePaths().size() == 0) && 
vendorInfoRepository.exists() )
                 {
                     File sdkInstallRoot = null;
                     try


Reply via email to