-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge SRI Commits #22
base: master
Are you sure you want to change the base?
Conversation
* code cleanup * python3 and augmaker graphtool and code cleanup * closes Issue#22 * updates log file name * removes unused imports * more formatting changes and additional comments
Unify my fork and this project
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for updating this!
do_like_javac/tools/check.py
Outdated
@@ -4,8 +4,49 @@ | |||
|
|||
from . import common | |||
|
|||
from . import common |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a duplicate of the line above.
delete-me
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this adding an empty file? Why?
import copy | ||
import os | ||
|
||
from . import common |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is repeated again below.
do_like_javac/tools/infer.py
Outdated
'--logLevel=INFO', | ||
'--jaifFile', jaif_file] | ||
|
||
if args.inPlace: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you carefully go through the current logic and make sure nothing is lost?
Isn't --inPlace
still an option?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks! I think we need to undo this change.
do_like_javac/tools/check.py
Outdated
@@ -6,6 +6,45 @@ | |||
|
|||
argparser = None | |||
|
|||
## other_args is other command-line arguments to javac. | |||
## brought this from github.com/kelloggm/do-like-javac | |||
def get_arguments_by_version(jdk_version, other_args = None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we don't use it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
compare with two cases, and see whether this is meaningful and keep only one.
No description provided.