]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/modules/DeprecatedProperty.java
(refs #7250) Merging master, minor CHR bugfixes
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / elaboration / modules / DeprecatedProperty.java
1 package org.simantics.scl.compiler.elaboration.modules;
2
3 public class DeprecatedProperty implements SCLValueProperty {
4     public final String description;
5
6     public DeprecatedProperty(String description) {
7         this.description = description;
8     }
9 }