You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 10, 2020. It is now read-only.
When compiling any code (example included) I get these warnings:
if I clean build folder
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
the warnings are for:
...build\barcode_scan\generated\source\proto\release\javalite\de\mintware\barcode_scan\AndroidConfigurationOuterClass.java:396: warning: [unchecked] unchecked call to DefaultInstanceBasedParser(T) as a member of the raw type DefaultInstanceBasedParser
PARSER = new DefaultInstanceBasedParser(DEFAULT_INSTANCE);
^
where T is a type-variable:
T extends GeneratedMessageLite<T,?> declared in class DefaultInstanceBasedParser
...
build\barcode_scan\generated\source\proto\release\javalite\de\mintware\barcode_scan\AndroidConfigurationOuterClass.java:396: warning: [unchecked] unchecked conversion
PARSER = new DefaultInstanceBasedParser(DEFAULT_INSTANCE);
^
required: Parser<AndroidConfiguration>
found: DefaultInstanceBasedParser
...
build\barcode_scan\generated\source\proto\release\javalite\de\mintware\barcode_scan\Protos.java:645: warning: [unchecked] unchecked conversion
PARSER = new DefaultInstanceBasedParser(DEFAULT_INSTANCE);
^
required: Parser<AndroidConfiguration>
found: DefaultInstanceBasedParser
...
build\barcode_scan\generated\source\proto\release\javalite\de\mintware\barcode_scan\ScanResultOuterClass.java:884: warning: [unchecked] unchecked call to DefaultInstanceBasedParser(T) as a member of the raw type DefaultInstanceBasedParser
PARSER = new DefaultInstanceBasedParser(DEFAULT_INSTANCE);
^
where T is a type-variable:
T extends GeneratedMessageLite<T,?> declared in class DefaultInstanceBasedParser
erClass.java:884: warning: [unchecked] unchecked conversion
PARSER = new DefaultInstanceBasedParser(DEFAULT_INSTANCE);
^
required: Parser<ScanResult>
found: DefaultInstanceBasedParser
...more others similar.
is it possible to remove them?
I use Android.
[√] Flutter (Channel stable, 1.22.0, on Microsoft Windows [Versione 10.0.19041.508], locale it-IT)
[√] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
[√] Android Studio (version 4.0)
The text was updated successfully, but these errors were encountered:
When compiling any code (example included) I get these warnings:
if I clean build folder
the warnings are for:
is it possible to remove them?
I use Android.
The text was updated successfully, but these errors were encountered: