javac --patch-module java.base=src -d mypatches/java.base \
src/java.base/java/util/concurrent/ConcurrentHashMap.java [javac] error: package exists in another module: java.base
[javac] package java.io;
src
+- classes
+- java
+- io
+- lang
+- util
+- function
+- logging
+- FileHandler.java
got sources for multiple modules in the same tree.
But the problem here is that we
So for example the package
java.util exists in java.basejava.util.logging exists in java.loggingjava.util.function exists in java.baseSee: https://docs.oracle.com/javase/9/docs/api/module-overview-frame.html
So I was wondering if we could restructure these directories based on their respective modules, it would be easier for us to compile. And will help in case we want convert them into modules, which I think will be better done later.
I've asked this in StackOverflow as well and yet to receive an answer.[javac] javac: invalid flag: -Xlint:-sunapi
warning: [deprecation] Integer(int) in Integer has been deprecated
You are welcome to move files to a different directory if it is not possible (or very difficult) otherwise to compile them with Java 9.
Such efforts would of course have to take place on a separate branch in the git repository, e.g., java-9. After that work is finalized, the current branch could become java-8, while java-9 would become the master branch.
-----You received this message because you are subscribed to a topic in the Google Groups "Java™ Pathfinder" group.To unsubscribe from this topic, visit https://groups.google.com/d/topic/java-pathfinder/nl0FGilSrcg/unsubscribe.To unsubscribe from this group and all its topics, send an email to java-pathfind...@googlegroups.com.For more options, visit https://groups.google.com/d/optout.
Commit - Temporary fix: String