-
Notifications
You must be signed in to change notification settings - Fork 31
Comparing changes
Open a pull request
base repository: DrJavaAtRice/drjava
base: master
head repository: DrJavaAtRice/drjava
compare: java8-alt
- 13 commits
- 51 files changed
- 1 contributor
Commits on Nov 17, 2024
-
On branch main Changes to be committed: modified: build.xml
Configuration menu - View commit details
-
Copy full SHA for 91be544 - Browse repository at this point
Copy the full SHA 91be544View commit details -
Reverted the insertion of invokeLater wrappers in JUnitPanel.java. Th…
…ey were redundant. The enclosing code already checked that the executing thread was the dispatch thread. Changes to be committed: modified: src/edu/rice/cs/drjava/ui/JUnitPanel.java
Configuration menu - View commit details
-
Copy full SHA for ae515cd - Browse repository at this point
Copy the full SHA ae515cdView commit details
Commits on Nov 18, 2024
-
Tiny cleanup of final/volatile attributes in variable declarations.
Changes to be committed: modified: model/GlobalEventNotifier.java modified: ui/NewVersionPopup.java
Configuration menu - View commit details
-
Copy full SHA for c65be0b - Browse repository at this point
Copy the full SHA c65be0bView commit details
Commits on Dec 3, 2024
-
Many small changes directed at fixing the concurrency bug in the unit…
… testing framework. There is still a lingering problem when running tests in flat file mode. Changes to be committed: modified: src/edu/rice/cs/drjava/model/GlobalEventNotifier.java modified: src/edu/rice/cs/drjava/model/GlobalModelCompileErrorsTest.java modified: src/edu/rice/cs/drjava/model/GlobalModelIOTest.java modified: src/edu/rice/cs/drjava/model/GlobalModelOtherTest.java modified: src/edu/rice/cs/drjava/model/junit/DefaultJUnitModel.java modified: src/edu/rice/cs/drjava/model/junit/JUnitEventNotifier.java modified: src/edu/rice/cs/drjava/model/junit/JUnitTestRunner.java modified: src/edu/rice/cs/drjava/model/repl/HistoryTest.java modified: src/edu/rice/cs/drjava/model/repl/InteractionsModel.java modified: src/edu/rice/cs/drjava/model/repl/InteractionsModelErrorTest.java modified: src/edu/rice/cs/drjava/model/repl/JavaInterpreterTest.java modified: src/edu/rice/cs/drjava/model/repl/RMIInteractionsModel.java modified: src/edu/rice/cs/drjava/ui/CompilerErrorPanel.java modified: src/edu/rice/cs/drjava/ui/ErrorPanel.java modified: src/edu/rice/cs/drjava/ui/JUnitPanel.java modified: src/edu/rice/cs/drjava/ui/JavadocErrorPanel.java modified: src/edu/rice/cs/drjava/ui/MainFrame.java modified: src/edu/rice/cs/util/XMLConfigTest.java modified: src/edu/rice/cs/util/swing/DefaultSwingFrame.java
Configuration menu - View commit details
-
Copy full SHA for b0fdc37 - Browse repository at this point
Copy the full SHA b0fdc37View commit details
Commits on Dec 7, 2024
-
Added the "-Xlint" option to javax.tools.compiler tasks to get comple…
…te diagnostics generated by that compiler (which are more extensive in later versions of Java than those generated by the familiar Java 8 compiler. Changes to be committed: modified: CompilerOptions.java modified: JavaxToolsCompiler.java
Configuration menu - View commit details
-
Copy full SHA for 17c0881 - Browse repository at this point
Copy the full SHA 17c0881View commit details
Commits on Dec 9, 2024
-
Changes to be committed: modified: ../DefaultGlobalModel.java modified: CompilerOptions.java Changed the compiler options to specify source and target are Java 8.
Configuration menu - View commit details
-
Copy full SHA for e6d9150 - Browse repository at this point
Copy the full SHA e6d9150View commit details
Commits on Mar 11, 2025
-
Patched JUnit test code so that unit tests pass. Incompatible changes…
… to the Java 8 compiler (made as updates to Java 8!) broke DrJava testing. Warnings (due to legacy raw types and serialVersionUID nonsense) were converted to errors. On branch java8 Your branch is up to date with 'origin/java8'. Changes to be committed: deleted: ../../../../../../extlib/java-atk-wrapper.jar modified: DefaultGlobalModel.java modified: GlobalModelCompileSuccessOptionsTest.java modified: GlobalModelCompileSuccessTestCase.java modified: GlobalModelOtherTest.java modified: GlobalModelTestCase.java modified: JDKToolsLibrary.java modified: SingleDisplayModelTest.java modified: junit/JUnitErrorModelTest.java
Configuration menu - View commit details
-
Copy full SHA for 9a56765 - Browse repository at this point
Copy the full SHA 9a56765View commit details
Commits on Mar 24, 2025
-
This small update includes patches to unit tests that perform compila…
…tion to accommodate changes to javac (!!) since Java 6. It also makes the java 8 compiler in the installed java 8 JDK distro the preferred compiler instead of the javax.tools compiler. The imports to JPDADebugger were changed to accommodate changes to the API in the Java libraries since Java 6 (!!). Changes to be committed: modified: ../config/OptionConstants.java modified: ../model/DefaultGlobalModel.java modified: ../model/GlobalEventNotifier.java modified: ../model/GlobalModelOtherTest.java modified: ../model/compiler/DefaultCompilerModel.java modified: ../model/debug/jpda/JPDADebugger.java modified: MainFrame.java
Configuration menu - View commit details
-
Copy full SHA for 458e0a2 - Browse repository at this point
Copy the full SHA 458e0a2View commit details -
Streamlined MultiThreadedTestCase and DrJavaTestCase because of faili…
…ng test in ProjectMenuTest.java. The setUp method in DrJavaTestCase appeared broken when assert checking was enabled. Changes to be committed: modified: ../../drjava/DrJavaTestCase.java modified: ../../drjava/model/MultiThreadedTestCase.java modified: ../../drjava/ui/ProjectMenuTest.java modified: AbstractMasterJVM.java
Configuration menu - View commit details
-
Copy full SHA for 2331c79 - Browse repository at this point
Copy the full SHA 2331c79View commit details
Commits on Mar 25, 2025
-
Added comments in JUnitEventNotifier and MainJVM.java
Changes to be committed: modified: junit/JUnitEventNotifier.java modified: repl/newjvm/MainJVM.java
Configuration menu - View commit details
-
Copy full SHA for 93db0ca - Browse repository at this point
Copy the full SHA 93db0caView commit details
Commits on Mar 29, 2025
-
Converted _listeners in EventNotifier to CopyOnWriteArrayList, simpli…
…fying readers/writers synchronization On branch java8-alt Your branch is up to date with 'origin/java8-alt'. Changes to be committed: modified: drjava/src/edu/rice/cs/drjava/model/AbstractDJDocument.java modified: drjava/src/edu/rice/cs/drjava/model/BrowserHistoryManager.java modified: drjava/src/edu/rice/cs/drjava/model/ConcreteRegionManager.java modified: drjava/src/edu/rice/cs/drjava/model/EventNotifier.java modified: drjava/src/edu/rice/cs/drjava/model/GlobalEventNotifier.java modified: drjava/src/edu/rice/cs/drjava/model/compiler/CompilerEventNotifier.java modified: drjava/src/edu/rice/cs/drjava/model/debug/DebugEventNotifier.java modified: drjava/src/edu/rice/cs/drjava/model/javadoc/JavadocEventNotifier.java modified: drjava/src/edu/rice/cs/drjava/model/junit/JUnitEventNotifier.java modified: drjava/src/edu/rice/cs/drjava/model/repl/InteractionsEventNotifier.java modified: drjava/src/edu/rice/cs/drjava/model/repl/newjvm/MainJVM.java modified: drjava/src/edu/rice/cs/drjava/ui/avail/GUIAvailabilityNotifier.java Untracked files: drjava/src/edu/rice/cs/drjava/model/EventNotifier.java.alt2
Configuration menu - View commit details
-
Copy full SHA for d86ca6f - Browse repository at this point
Copy the full SHA d86ca6fView commit details
Commits on Apr 10, 2025
-
Minor revisions to swing/RMI synchronization to address lost test rep…
…orting in the JUnitPanel and a change in the switches passes to the javax.tools compiler (eliminating the -Xlint option). Changes to be committed: deleted: ../../../../../../drjava.jar modified: model/EventNotifier.java modified: model/compiler/CompilerEventNotifier.java modified: model/compiler/JavaxToolsCompiler.java modified: model/definitions/ClassNameNotFoundException.java modified: model/javadoc/JavadocEventNotifier.java modified: model/junit/DefaultJUnitModel.java modified: model/junit/JUnitEventNotifier.java modified: model/repl/newjvm/MainJVM.java modified: ui/avail/GUIAvailabilityNotifier.java modified: ui/coverage/CoverageFrame.java
Configuration menu - View commit details
-
Copy full SHA for 05e85ac - Browse repository at this point
Copy the full SHA 05e85acView commit details
Commits on Apr 21, 2025
-
Configuration menu - View commit details
-
Copy full SHA for eeea49f - Browse repository at this point
Copy the full SHA eeea49fView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff master...java8-alt