-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
移除不需要的东西,并修正从3.2.6版本遗留下来的与3.5.8版本不兼容的代码
- Loading branch information
1 parent
06b009a
commit 98020e8
Showing
21 changed files
with
197 additions
and
14,532 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE module PUBLIC | ||
"-//Puppy Crawl//DTD Check Configuration 1.3//EN" | ||
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> | ||
<!-- | ||
Licensed to the Apache Software Foundation (ASF) under one or more | ||
contributor license agreements. See the NOTICE file distributed with | ||
this work for additional information regarding copyright ownership. | ||
The ASF licenses this file to You under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with | ||
the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<!--Refer http://checkstyle.sourceforge.net/reports/google-java-style.html#s2.2-file-encoding --> | ||
<module name="Checker"> | ||
|
||
<property name="localeLanguage" value="en"/> | ||
|
||
<!--To configure the check to report on the first instance in each file--> | ||
<module name="FileTabCharacter"/> | ||
|
||
<!-- header --> | ||
<module name="RegexpHeader"> | ||
<property name="header" value="/\*\*\nLicensed to the Apache.*"/> | ||
</module> | ||
|
||
<!--<module name="RegexpSingleline">--> | ||
<!--<property name="format" value="System\.out\.println" />--> | ||
<!--<property name="message" value="Prohibit invoking System.out.println in source code !" />--> | ||
<!--</module>--> | ||
<!--<module name="RegexpSingleline">--> | ||
<!--<property name="format" value="//FIXME"/>--> | ||
<!--<property name="message" value="Recommended fix FIXME task !"/>--> | ||
<!--</module>--> | ||
<!--<module name="RegexpSingleline">--> | ||
<!--<property name="format" value="//TODO"/>--> | ||
<!--<property name="message" value="Recommended fix TODO task !"/>--> | ||
<!--</module>--> | ||
<module name="RegexpSingleline"> | ||
<property name="format" value=".*[\u4E00-\u9FA5]+.*"/> | ||
<property name="message" value="Recommended remove chinese !"/> | ||
</module> | ||
|
||
<module name="FileLength"> | ||
<property name="max" value="2000" /> | ||
</module> | ||
|
||
<!--<module name="TreeWalker">--> | ||
|
||
<!--<!– code cleanup –>--> | ||
<!--<module name="UnusedImports">--> | ||
<!--<property name="processJavadoc" value="true" />--> | ||
<!--</module>--> | ||
<!--<module name="RedundantImport"/>--> | ||
<!--<module name="IllegalImport" />--> | ||
<!--<!–Checks that classes that override equals() also override hashCode()–>--> | ||
<!--<module name="EqualsHashCode"/>--> | ||
<!--<!–Checks for over-complicated boolean expressions. Currently finds code like if (b == true), b || true, !false, etc.–>--> | ||
<!--<module name="SimplifyBooleanExpression"/>--> | ||
<!--<module name="OneStatementPerLine"/>--> | ||
<!--<module name="UnnecessaryParentheses" />--> | ||
<!--<!–Checks for over-complicated boolean return statements. For example the following code–>--> | ||
<!--<!–<module name="SimplifyBooleanReturn"/>–>--> | ||
|
||
<!--<!– style –>--> | ||
<!--<!–Check that the default is after all the cases in a switch statement–>--> | ||
<!--<module name="DefaultComesLast"/>--> | ||
<!--<!–Detects empty statements (standalone ";" semicolon)–>--> | ||
<!--<module name="EmptyStatement"/>--> | ||
<!--<!–Checks that long constants are defined with an upper ell–>--> | ||
<!--<!–<module name="UpperEll"/>–>--> | ||
<!--<!–--> | ||
<!--<module name="ConstantName">--> | ||
<!--<property name="format" value="(^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$)|(^log$)"/>--> | ||
<!--</module>--> | ||
<!--–>--> | ||
<!--<!–Checks that local, non-final variable names conform to a format specified by the format property–>--> | ||
<!--<module name="LocalVariableName"/>--> | ||
<!--<!–Validates identifiers for local, final variables, including catch parameters–>--> | ||
<!--<module name="LocalFinalVariableName"/>--> | ||
<!--<!–Validates identifiers for non-static fields–>--> | ||
<!--<module name="MemberName"/>--> | ||
<!--<!–Validates identifiers for class type parameters–>--> | ||
<!--<!–--> | ||
<!--<module name="ClassTypeParameterName">--> | ||
<!--<property name="format" value="^[A-Z0-9]*$"/>--> | ||
<!--</module>--> | ||
<!--–>--> | ||
<!--<!–Validates identifiers for method type parameters–>--> | ||
<!--<!–--> | ||
<!--<module name="MethodTypeParameterName">--> | ||
<!--<property name="format" value="^[A-Z0-9]*$"/>--> | ||
<!--</module>--> | ||
<!--–>--> | ||
<!--<module name="PackageName"/>--> | ||
<!--<module name="ParameterName"/>--> | ||
<!--<module name="StaticVariableName"/>--> | ||
<!--<module name="TypeName"/>--> | ||
<!--<!–Checks that there are no import statements that use the * notation–>--> | ||
<!--<!–<module name="AvoidStarImport"/>–>--> | ||
|
||
<!--<!– whitespace –>--> | ||
<!--<module name="GenericWhitespace"/>--> | ||
<!--<module name="NoWhitespaceBefore"/>--> | ||
<!--<module name="WhitespaceAfter" />--> | ||
<!--<module name="NoWhitespaceAfter"/>--> | ||
<!--<module name="WhitespaceAround">--> | ||
<!--<property name="allowEmptyConstructors" value="true"/>--> | ||
<!--<property name="allowEmptyMethods" value="true"/>--> | ||
<!--</module>--> | ||
<!--<module name="Indentation"/>--> | ||
<!--<module name="MethodParamPad"/>--> | ||
<!--<module name="ParenPad"/>--> | ||
<!--<module name="TypecastParenPad"/>--> | ||
<!--</module>--> | ||
</module> |
17 changes: 17 additions & 0 deletions
17
rocketmq-client/src/main/java/com/alibaba/rocketmq/client/VirtualEnvUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...etmq-common/src/main/java/com/alibaba/rocketmq/common/conflict/PackageConflictDetect.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.