diff options
author | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2014-04-10 17:11:32 +0200 |
---|---|---|
committer | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2014-04-10 17:11:40 +0200 |
commit | 18fbb41d409fa4b58e298de2d30581d8e1f4a3a8 (patch) | |
tree | 8da95c31da78c25c76e8cf2fc3fb60d11ef71dd9 /sonar-server/src/main/java/org/sonar/server/user | |
parent | 0714ae86a68f3230d1819ff02f2e26eb31e114fe (diff) | |
download | sonarqube-18fbb41d409fa4b58e298de2d30581d8e1f4a3a8.tar.gz sonarqube-18fbb41d409fa4b58e298de2d30581d8e1f4a3a8.zip |
Fix quality flaws
Diffstat (limited to 'sonar-server/src/main/java/org/sonar/server/user')
-rw-r--r-- | sonar-server/src/main/java/org/sonar/server/user/DoPrivileged.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/java/org/sonar/server/user/DoPrivileged.java b/sonar-server/src/main/java/org/sonar/server/user/DoPrivileged.java index 9e323a63919..edae46ab7ae 100644 --- a/sonar-server/src/main/java/org/sonar/server/user/DoPrivileged.java +++ b/sonar-server/src/main/java/org/sonar/server/user/DoPrivileged.java @@ -53,7 +53,7 @@ public final class DoPrivileged { * Define a task that will be executed using the highest privileges available. The privileged section is restricted * to the execution of the {@link #doPrivileged()} method. */ - public static abstract class Task { + public abstract static class Task { /** * Code placed in this method will be executed in a privileged environment. |