Skip to content

Commit

Permalink
Missed one Type call
Browse files Browse the repository at this point in the history
  • Loading branch information
sschr15 committed Aug 18, 2024
1 parent 121cd7a commit 11236de
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package org.vineflower.ideanotnull;

import org.jetbrains.java.decompiler.api.DecompilerOption;
import org.jetbrains.java.decompiler.api.plugin.PluginOptions;
import org.jetbrains.java.decompiler.main.extern.IFernflowerPreferences;

public interface IdeaNotNullOptions {
@IFernflowerPreferences.Name("Resugar Intellij IDEA @NotNull")
@IFernflowerPreferences.Description("Resugar Intellij IDEA's code generated by @NotNull annotations.")
@IFernflowerPreferences.ShortName("inn")
@IFernflowerPreferences.Type(IFernflowerPreferences.Type.BOOLEAN)
@IFernflowerPreferences.Type(DecompilerOption.Type.BOOLEAN)
String IDEA_NOT_NULL_ANNOTATION = "resugar-idea-notnull";

static void addDefaults(PluginOptions.AddDefaults cons) {
Expand Down

0 comments on commit 11236de

Please sign in to comment.