Skip to content

Commit

Permalink
removed asterisks falsely added by IDE formatter bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille committed Apr 9, 2024
1 parent 88f4655 commit f050774
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cli/src/main/java/com/devonfw/tools/ide/context/GitContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public interface GitContext {
* @param repoUrl the git remote URL to clone from.
* @param branch the explicit name of the branch to checkout e.g. "main" or {@code null} to use the default branch.
* @param targetRepository the {@link Path} to the target folder where the git repository should be cloned or pulled.
* It is not the parent directory where git will by default create a sub-folder by default on clone but the *
* It is not the parent directory where git will by default create a sub-folder by default on clone but the
* final folder that will contain the ".git" subfolder.
* @throws CliOfflineException if offline and cloning is needed.
*/
Expand All @@ -30,7 +30,7 @@ public interface GitContext {
*
* @param repoUrl the git remote URL to clone from.
* @param targetRepository the {@link Path} to the target folder where the git repository should be cloned or pulled.
* It is not the parent directory where git will by default create a sub-folder by default on clone but the *
* It is not the parent directory where git will by default create a sub-folder by default on clone but the
* final folder that will contain the ".git" subfolder.
* @throws CliOfflineException if offline and cloning is needed.
*/
Expand All @@ -44,7 +44,7 @@ default void pullOrCloneAndResetIfNeeded(String repoUrl, Path targetRepository)
*
* @param repoUrl the git remote URL to clone from.
* @param targetRepository the {@link Path} to the target folder where the git repository should be cloned or pulled.
* It is not the parent directory where git will by default create a sub-folder by default on clone but the *
* It is not the parent directory where git will by default create a sub-folder by default on clone but the
* final folder that will contain the ".git" subfolder.
* @param branch the explicit name of the branch to checkout e.g. "main" or {@code null} to use the default branch.
* @throws CliOfflineException if offline and cloning is needed.
Expand All @@ -59,7 +59,7 @@ default void pullOrCloneAndResetIfNeeded(String repoUrl, Path targetRepository,
*
* @param repoUrl the git remote URL to clone from.
* @param targetRepository the {@link Path} to the target folder where the git repository should be cloned or pulled.
* It is not the parent directory where git will by default create a sub-folder by default on clone but the *
* It is not the parent directory where git will by default create a sub-folder by default on clone but the
* final folder that will contain the ".git" subfolder.
* @param branch the explicit name of the branch to checkout e.g. "main" or {@code null} to use the default branch.
* @param remoteName the remote name e.g. origin.
Expand All @@ -72,7 +72,7 @@ default void pullOrCloneAndResetIfNeeded(String repoUrl, Path targetRepository,
*
* @param gitRepoUrl the git remote URL to clone from.
* @param targetRepository the {@link Path} to the target folder where the git repository should be cloned or pulled.
* It is not the parent directory where git will by default create a sub-folder by default on clone but the *
* It is not the parent directory where git will by default create a sub-folder by default on clone but the
* final folder that will contain the ".git" subfolder.
* @throws CliOfflineException if offline and cloning is needed.
*/
Expand All @@ -84,7 +84,7 @@ default void pullOrCloneAndResetIfNeeded(String repoUrl, Path targetRepository,
* @param gitRepoUrl the git remote URL to clone from.
* @param branch the explicit name of the branch to checkout e.g. "main" or {@code null} to use the default branch.
* @param targetRepository the {@link Path} to the target folder where the git repository should be cloned or pulled.
* It is not the parent directory where git will by default create a sub-folder by default on clone but the *
* It is not the parent directory where git will by default create a sub-folder by default on clone but the
* final folder that will contain the ".git" subfolder.
* @throws CliOfflineException if offline and cloning is needed.
*/
Expand Down

0 comments on commit f050774

Please sign in to comment.