Skip to content

Commit

Permalink
fixed javadoc stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Advay17 committed Sep 17, 2024
1 parent 622f04e commit 53c118c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
11 changes: 9 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import org.gradle.internal.os.OperatingSystem

pluginManagement {
repositories {
mavenLocal()
Expand All @@ -25,6 +24,14 @@ pluginManagement {
}
}
}

plugins {
id "com.gradle.develocity" version "3.18.1"
}
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
termsOfUseAgree = "yes"
}
}
Properties props = System.getProperties();
props.setProperty("org.gradle.internal.native.headers.unresolved.dependencies.ignore", "true");
1 change: 0 additions & 1 deletion src/main/java/frc/robot/commands/DriveCommands.java
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ public static class TurnDegrees extends Command {
*
* @param speed The speed which the robot will drive. Negative is in reverse.
* @param degrees Degrees to turn. Leverages encoders to compare distance.
* @param drive The drive subsystem on which this command will run
*/
public TurnDegrees(double speed, double degrees) {
m_degrees = degrees;
Expand Down

0 comments on commit 53c118c

Please sign in to comment.