jira-importer commented on issue #732:
URL: 
https://github.com/apache/maven-javadoc-plugin/issues/732#issuecomment-2957348768

   **[Alex 
Collins](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=alex.e.c)**
 commented
   
   Suspect change:
   
   ```
   +++ 
b/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/javadoc/AbstractJavadocMojo.java
   @@ -3531,7 +3531,8 @@ public abstract class AbstractJavadocMojo
                javadocExe =
                    new File( SystemUtils.getJavaHome() + File.separator + ".." 
+ File.separator + "sh", javadocCommand );
            }
   -        else if ( SystemUtils.IS_OS_MAC_OSX )
   +        // For Apple's JDK 1.6.x (and older?) on Mac OSX
   +        else if ( SystemUtils.IS_OS_MAC_OSX && 
SystemUtils.JAVA_VERSION_FLOAT < 1.7f )
            {
                javadocExe = new File( SystemUtils.getJavaHome() + 
File.separator + "bin", javadocCommand );
            }
   
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to