Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
София Корватовская committed Dec 1, 2024
1 parent 539c9db commit 83bb42a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void AddDeprecatedAnnotations(DirectoryPath destinationDir)

if (lines[i].Contains($"public static final class {targetClass}"))
{
if (i > 0 && lines[i - 1].Trim() == "@Deprecated")
if (i > 0 && lines[i - 1].Trim() == "@java.lang.Deprecated")
{
Information("@Deprecated already added to class {0} in file {1}", targetClass, fileName);
continue;
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ru.kontur.diadoc</groupId>
<artifactId>diadocsdk</artifactId>
<version>3.24.0-dev.5448.33886</version>
<version>3.24.1</version>

<packaging>jar</packaging>

Expand Down

0 comments on commit 83bb42a

Please sign in to comment.