@@ -2748,17 +2748,17 @@ public enum ReplaceContentPolicy {
2748
2748
none ,
2749
2749
/**
2750
2750
* If class obfuscation yields
2751
- * com.yworks.SampleClass -> A.A.A
2751
+ * com.yworks.SampleClass -> A.A.A
2752
2752
* then text in resource files will be adjusted as follows
2753
- * com.yworks.SampleStuff -> A.A.SampleStuff
2754
- * com.other.OtherStuff -> A.other.OtherStuff
2753
+ * com.yworks.SampleStuff -> A.A.SampleStuff
2754
+ * com.other.OtherStuff -> A.other.OtherStuff
2755
2755
*/
2756
2756
lenient ,
2757
2757
/**
2758
2758
* If class obfuscation yields
2759
- * com.yworks.SampleClass -> A.A.A
2759
+ * com.yworks.SampleClass -> A.A.A
2760
2760
* then text in resource files will be adjusted as follows
2761
- * com.yworks.SampleClass -> A.A.A
2761
+ * com.yworks.SampleClass -> A.A.A
2762
2762
*/
2763
2763
strict ;
2764
2764
}
@@ -2774,42 +2774,42 @@ public enum ReplacePathPolicy {
2774
2774
none , // replaceName = false, replacePath = false
2775
2775
/**
2776
2776
* If class obfuscation yields
2777
- * com.yworks.SampleClass -> A.A.A
2777
+ * com.yworks.SampleClass -> A.A.A
2778
2778
* then resource files will be renamed as follows
2779
- * com/yworks/SampleStuff.properties -> A/A/SampleStuff.properties
2780
- * com/other/OtherStuff.properties -> com /other/OtherStuff.properties
2779
+ * com/yworks/SampleStuff.properties -> A/A/SampleStuff.properties
2780
+ * com/other/OtherStuff.properties -> A /other/OtherStuff.properties
2781
2781
*/
2782
2782
path , // replaceName = false, replacePath = true, default
2783
2783
/**
2784
2784
* If class obfuscation yields
2785
- * com.yworks.SampleClass -> A.A.A
2785
+ * com.yworks.SampleClass -> A.A.A
2786
2786
* then resource files will be renamed as follows
2787
- * com/yworks/SampleStuff.properties -> com/yworks/A.properties
2788
- * com/other/OtherStuff.properties -> com/other/OtherStuff.properties
2787
+ * com/yworks/SampleStuff.properties -> com/yworks/A.properties
2788
+ * com/other/OtherStuff.properties -> com/other/OtherStuff.properties
2789
2789
*/
2790
2790
name , // replaceName = true, replacePath = false
2791
2791
/**
2792
2792
* If class obfuscation yields
2793
- * com.yworks.SampleClass -> A.A.A
2793
+ * com.yworks.SampleClass -> A.A.A
2794
2794
* then resource files will be renamed as follows
2795
- * com/yworks/SampleStuff.properties -> A/A/A.properties
2796
- * com/other/OtherStuff.properties -> com/other/OtherStuff.properties
2795
+ * com/yworks/SampleStuff.properties -> A/A/A.properties
2796
+ * com/other/OtherStuff.properties -> com/other/OtherStuff.properties
2797
2797
*/
2798
2798
file , // replaceName = true, replacePath = true
2799
2799
/**
2800
2800
* If class obfuscation yields
2801
- * com.yworks.SampleClass -> A.A.A
2801
+ * com.yworks.SampleClass -> A.A.A
2802
2802
* then resource files will be renamed as follows
2803
- * com/yworks/SampleStuff.properties -> A/A/A.properties
2804
- * com/yworks /OtherStuff.properties -> A/A /OtherStuff.properties
2803
+ * com/yworks/SampleStuff.properties -> A/A/A.properties
2804
+ * com/other /OtherStuff.properties -> A/other /OtherStuff.properties
2805
2805
*/
2806
2806
fileorpath ,
2807
2807
/**
2808
2808
* If class obfuscation yields
2809
- * com.yworks.SampleClass -> A.A.A
2809
+ * com.yworks.SampleClass -> A.A.A
2810
2810
* then resource files will be renamed as follows
2811
- * com/yworks/SampleStuff.properties -> A/A/A.properties
2812
- * com/other/OtherStuff.properties -> A/other/OtherStuff.properties
2811
+ * com/yworks/SampleStuff.properties -> A/A/A.properties
2812
+ * com/other/OtherStuff.properties -> A/other/OtherStuff.properties
2813
2813
*/
2814
2814
lenient
2815
2815
}
0 commit comments