Skip to content

Commit

Permalink
exclude spotbugs warnings related to memory pending proper resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
dsgrieve committed May 19, 2023
1 parent a46d42a commit 2010403
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion java/spotbugs-exclude.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,41 @@
<Field name="_storage"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>

<Match>
<Class name="com.microsoft.semantickernel.orchestration.planner.DefaultSequentialPlannerSKFunction"/>
<Field name="delegate"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>

<Match>
<Class name="com.microsoft.semantickernel.Kernel$Builder"/>
<Method name="withMemoryStore"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>

<Match>
<Class name="com.microsoft.semantickernel.KernelDefault"/>
<Field name="memoryStore"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>

<Match>
<Class name="com.microsoft.semantickernel.KernelDefault"/>
<Method name="getMemoryStore"/>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>

<Match>
<Class name="com.microsoft.semantickernel.memory.DefaultSemanticTextMemory$Builder"/>
<Method name="setStorage"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>

<Match>
<Class name="com.microsoft.semantickernel.skilldefinition.DefaultSkillCollection"/>
<Method name="getSkillCollection"/>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>

</FindBugsFilter>

0 comments on commit 2010403

Please sign in to comment.